public enum InformationStructure extends Enum<InformationStructure>
Modifier and Type | Method and Description |
---|---|
abstract byte |
encode(int size) |
static InformationStructure |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InformationStructure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InformationStructure SINGLE
public static final InformationStructure SEQUENCE
public static InformationStructure[] values()
for (InformationStructure c : InformationStructure.values()) System.out.println(c);
public static InformationStructure 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 nullpublic abstract byte encode(int size)