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