public static enum chunk.chunkType extends java.lang.Enum<chunk.chunkType>
| Enum Constant | Description |
|---|---|
chunkError |
|
chunkNone |
|
chunkTag |
|
chunkText |
| Modifier and Type | Method | Description |
|---|---|---|
static chunk.chunkType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static chunk.chunkType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final chunk.chunkType chunkNone
public static final chunk.chunkType chunkText
public static final chunk.chunkType chunkTag
public static final chunk.chunkType chunkError
public static chunk.chunkType[] values()
for (chunk.chunkType c : chunk.chunkType.values()) System.out.println(c);
public static chunk.chunkType 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