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