public enum XBBlockTerminationMode extends java.lang.Enum<XBBlockTerminationMode>
Enum Constant and Description |
---|
SIZE_SPECIFIED
Block has specified size.
|
TERMINATED_BY_ZERO
Block is terminated by zero value (terminator block).
|
Modifier and Type | Method and Description |
---|---|
static XBBlockTerminationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XBBlockTerminationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XBBlockTerminationMode SIZE_SPECIFIED
public static final XBBlockTerminationMode TERMINATED_BY_ZERO
public static XBBlockTerminationMode[] values()
for (XBBlockTerminationMode c : XBBlockTerminationMode.values()) System.out.println(c);
public static XBBlockTerminationMode 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