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