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