public enum CodingStates extends Enum<CodingStates>
Modifier and Type | Method and Description |
---|---|
static CodingStates |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodingStates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodingStates CONFIG
public static final CodingStates RESET
public static final CodingStates CODING
public static final CodingStates END
public static final CodingStates FLUSHED
public static CodingStates[] values()
for (CodingStates c : CodingStates.values()) System.out.println(c);
public static CodingStates valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2009–2017 Mark A. Ziesemer. All rights reserved.