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