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