Enum Class AbstractGridLineVisualSet.GridLineLabelPosition
java.lang.Object
java.lang.Enum<AbstractGridLineVisualSet.GridLineLabelPosition>
com.amalgamasimulation.charts.visualsets.AbstractGridLineVisualSet.GridLineLabelPosition
- All Implemented Interfaces:
Serializable,Comparable<AbstractGridLineVisualSet.GridLineLabelPosition>,Constable
- Enclosing class:
AbstractGridLineVisualSet<T>
public static enum AbstractGridLineVisualSet.GridLineLabelPosition
extends Enum<AbstractGridLineVisualSet.GridLineLabelPosition>
Enumeration that represents the horizontal location of the label relative to
the grid line.
- Author:
- Aleksey Kirillov
-
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 TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
END
The label is drawn at the rightmost position of a horizontal line and a the top of a vertical line. -
MIDDLE
The label is draw in the middle of a line. -
BEGIN
The label is drawn at the leftmost position of a horizontal line and a the bottom of a vertical line.
-
-
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
-