public static enum APEFlags.Type extends java.lang.Enum<APEFlags.Type>
| Enum Constant and Description |
|---|
BINARY
item contains binary information.
|
EXTERNAL_LINK
item is a locator of externally stored information.
|
RESERVED
reserved for future use.
|
UTF_8
item contains text information encoded in UTF-8.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static APEFlags.Type |
valueOf(int type)
convert an integral value to its corresponding enum.
|
static APEFlags.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APEFlags.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APEFlags.Type UTF_8
public static final APEFlags.Type BINARY
public static final APEFlags.Type EXTERNAL_LINK
public static final APEFlags.Type RESERVED
public static APEFlags.Type[] values()
for (APEFlags.Type c : APEFlags.Type.values()) System.out.println(c);
public static APEFlags.Type 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 java.lang.String toString()
toString in class java.lang.Enum<APEFlags.Type>public static APEFlags.Type valueOf(int type)
type - the integral value that is to be converted to an APE Type enum.java.lang.IllegalArgumentException - if there is no APE Type enum whose ordinal value corresponds to the given integral value.