Package net.paulhertz.pixelaudio
Enum Class AffineTransformType
- All Implemented Interfaces:
Serializable
,Comparable<AffineTransformType>
,Constable
ROT90 rotate 90 degrees clockwise ROT90CCW rotate 90 degrees counterclockwise ROT180 rotate 180 degrees FLIPX reflect vertically, y coordinates do not change FLIPX90 reflect vertically, then rotate 90 clockwise = reflect on the secondary diagonal, upper left to lower right, secondary diagonal does not change FLIPX90CCW reflect vertically, then rotate 90 counterclockwise = reflect on the primary diagonal, upper right to lower left, primary diagonal does not change FLIPY reflect horizontally, x coordinates do not change NADA no operation
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic AffineTransformType
Returns the enum constant of this class with the specified name.static AffineTransformType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ROT90
-
ROT90CCW
-
ROT180
-
FLIPX
-
FLIPX90
-
FLIPX90CCW
-
FLIPY
-
NADA
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-