Package org.openrefine.browsing.facets
Enum ScatterplotFacet.Rotation
- java.lang.Object
-
- java.lang.Enum<ScatterplotFacet.Rotation>
-
- org.openrefine.browsing.facets.ScatterplotFacet.Rotation
-
- All Implemented Interfaces:
Serializable
,Comparable<ScatterplotFacet.Rotation>
- Enclosing class:
- ScatterplotFacet
public static enum ScatterplotFacet.Rotation extends Enum<ScatterplotFacet.Rotation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_ROTATION
ROTATE_CCW
ROTATE_CW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScatterplotFacet.Rotation
valueOf(String name)
Returns the enum constant of this type with the specified name.static ScatterplotFacet.Rotation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_ROTATION
public static final ScatterplotFacet.Rotation NO_ROTATION
-
ROTATE_CW
public static final ScatterplotFacet.Rotation ROTATE_CW
-
ROTATE_CCW
public static final ScatterplotFacet.Rotation ROTATE_CCW
-
-
Method Detail
-
values
public static ScatterplotFacet.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 (ScatterplotFacet.Rotation c : ScatterplotFacet.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 ScatterplotFacet.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
-
-