Package net.sourceforge.uiq3.fx603p
Enum Key_C.Status_Type
- java.lang.Object
-
- java.lang.Enum<Key_C.Status_Type>
-
- net.sourceforge.uiq3.fx603p.Key_C.Status_Type
-
- All Implemented Interfaces:
Serializable,Comparable<Key_C.Status_Type>
- Enclosing class:
- Key_C
private static enum Key_C.Status_Type extends Enum<Key_C.Status_Type>
-
-
Constructor Summary
Constructors Modifier Constructor Description privateStatus_Type()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Key_C.Status_TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Key_C.Status_Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final Key_C.Status_Type None
-
Prog_0
public static final Key_C.Status_Type Prog_0
-
Prog_10
public static final Key_C.Status_Type Prog_10
-
-
Method Detail
-
values
public static Key_C.Status_Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Key_C.Status_Type c : Key_C.Status_Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Key_C.Status_Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-