public enum StructureType extends Enum<StructureType>
| Enum Constant and Description |
|---|
BACKGROUND |
BLOCK |
FLOAT |
INLINE |
INLINE_CHILD_BOX |
LAYER |
LIST_MARKER |
REPLACED |
RUNNING |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static StructureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureType LAYER
public static final StructureType RUNNING
public static final StructureType BACKGROUND
public static final StructureType TEXT
public static final StructureType FLOAT
public static final StructureType BLOCK
public static final StructureType INLINE
public static final StructureType INLINE_CHILD_BOX
public static final StructureType LIST_MARKER
public static final StructureType REPLACED
public static StructureType[] values()
for (StructureType c : StructureType.values()) System.out.println(c);
public static StructureType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2004–2025. All rights reserved.