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