Package one.empty3.library.modelerview
Enum CubesOrientation.CubesOrientationConstants
- java.lang.Object
-
- java.lang.Enum<CubesOrientation.CubesOrientationConstants>
-
- one.empty3.library.modelerview.CubesOrientation.CubesOrientationConstants
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CubesOrientation.CubesOrientationConstants>
- Enclosing class:
- CubesOrientation
public static enum CubesOrientation.CubesOrientationConstants extends java.lang.Enum<CubesOrientation.CubesOrientationConstants>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description downBackLeft
downBackRight
downFrontLeft
downFrontRight
upBackLeft
upBackRight
upFrontLeft
upFrontRight
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CubesOrientation.CubesOrientationConstants
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CubesOrientation.CubesOrientationConstants[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
upFrontLeft
public static final CubesOrientation.CubesOrientationConstants upFrontLeft
-
upFrontRight
public static final CubesOrientation.CubesOrientationConstants upFrontRight
-
downFrontLeft
public static final CubesOrientation.CubesOrientationConstants downFrontLeft
-
downFrontRight
public static final CubesOrientation.CubesOrientationConstants downFrontRight
-
upBackLeft
public static final CubesOrientation.CubesOrientationConstants upBackLeft
-
upBackRight
public static final CubesOrientation.CubesOrientationConstants upBackRight
-
downBackLeft
public static final CubesOrientation.CubesOrientationConstants downBackLeft
-
downBackRight
public static final CubesOrientation.CubesOrientationConstants downBackRight
-
-
Method Detail
-
values
public static CubesOrientation.CubesOrientationConstants[] 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 (CubesOrientation.CubesOrientationConstants c : CubesOrientation.CubesOrientationConstants.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CubesOrientation.CubesOrientationConstants valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-