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