public enum XBBasicBlockType extends java.lang.Enum<XBBasicBlockType>
| Enum Constant and Description |
|---|
BLOCK_DECLARATION |
BLOCK_DEFINITION |
DECLARATION |
FORMAT_DECLARATION |
FORMAT_DEFINITION |
GROUP_DECLARATION |
GROUP_DEFINITION |
LIST_DEFINITION |
REVISION_DEFINITION |
UNKNOWN_BLOCK |
| Modifier and Type | Method and Description |
|---|---|
static XBBasicBlockType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XBBasicBlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XBBasicBlockType UNKNOWN_BLOCK
public static final XBBasicBlockType DECLARATION
public static final XBBasicBlockType FORMAT_DECLARATION
public static final XBBasicBlockType GROUP_DECLARATION
public static final XBBasicBlockType BLOCK_DECLARATION
public static final XBBasicBlockType FORMAT_DEFINITION
public static final XBBasicBlockType GROUP_DEFINITION
public static final XBBasicBlockType BLOCK_DEFINITION
public static final XBBasicBlockType LIST_DEFINITION
public static final XBBasicBlockType REVISION_DEFINITION
public static XBBasicBlockType[] values()
for (XBBasicBlockType c : XBBasicBlockType.values()) System.out.println(c);
public static XBBasicBlockType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null