Enum CameraTransformer.RotateOrder
- java.lang.Object
-
- java.lang.Enum<CameraTransformer.RotateOrder>
-
- org.openstreetmap.josm.plugins.streetside.cubemap.CameraTransformer.RotateOrder
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CameraTransformer.RotateOrder>
- Enclosing class:
- CameraTransformer
public static enum CameraTransformer.RotateOrder extends java.lang.Enum<CameraTransformer.RotateOrder>
-
-
Constructor Summary
Constructors Modifier Constructor Description privateRotateOrder()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CameraTransformer.RotateOrdervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CameraTransformer.RotateOrder[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XYZ
public static final CameraTransformer.RotateOrder XYZ
-
XZY
public static final CameraTransformer.RotateOrder XZY
-
YXZ
public static final CameraTransformer.RotateOrder YXZ
-
YZX
public static final CameraTransformer.RotateOrder YZX
-
ZXY
public static final CameraTransformer.RotateOrder ZXY
-
ZYX
public static final CameraTransformer.RotateOrder ZYX
-
-
Constructor Detail
-
RotateOrder
private RotateOrder()
-
-
Method Detail
-
values
public static CameraTransformer.RotateOrder[] 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 (CameraTransformer.RotateOrder c : CameraTransformer.RotateOrder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CameraTransformer.RotateOrder 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
-
-