Package adams.data.filter
Enum HeatmapRotate.Rotation
- java.lang.Object
-
- java.lang.Enum<HeatmapRotate.Rotation>
-
- adams.data.filter.HeatmapRotate.Rotation
-
- All Implemented Interfaces:
Serializable
,Comparable<HeatmapRotate.Rotation>
- Enclosing class:
- HeatmapRotate
public static enum HeatmapRotate.Rotation extends Enum<HeatmapRotate.Rotation>
Defines the type of rotation to perform.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ROTATE_180_DEGREES
180 degrees.ROTATE_270_DEGREES
270 degrees.ROTATE_90_DEGREES
90 degrees.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HeatmapRotate.Rotation
valueOf(String name)
Returns the enum constant of this type with the specified name.static HeatmapRotate.Rotation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROTATE_90_DEGREES
public static final HeatmapRotate.Rotation ROTATE_90_DEGREES
90 degrees.
-
ROTATE_180_DEGREES
public static final HeatmapRotate.Rotation ROTATE_180_DEGREES
180 degrees.
-
ROTATE_270_DEGREES
public static final HeatmapRotate.Rotation ROTATE_270_DEGREES
270 degrees.
-
-
Method Detail
-
values
public static HeatmapRotate.Rotation[] 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 (HeatmapRotate.Rotation c : HeatmapRotate.Rotation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HeatmapRotate.Rotation valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-