Enum Class WaterfallVisualSet.Category
java.lang.Object
java.lang.Enum<WaterfallVisualSet.Category>
com.amalgamasimulation.charts.visualsets.WaterfallVisualSet.Category
- All Implemented Interfaces:
Serializable,Comparable<WaterfallVisualSet.Category>,Constable
- Enclosing class:
WaterfallVisualSet<T>
Defines the category of a bar (data element) in the waterfall chart.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents the absolute value of an element.Represents a negative change from the previous value.Represents a placeholder used for alignment in the visualization to draw the area below the delta data elements.Represents a positive change from the previous value. -
Method Summary
Modifier and TypeMethodDescriptionstatic WaterfallVisualSet.CategoryReturns the enum constant of this class with the specified name.static WaterfallVisualSet.Category[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABSOLUTE_VALUE
Represents the absolute value of an element. -
PLACEHOLDER
Represents a placeholder used for alignment in the visualization to draw the area below the delta data elements. -
POSITIVE_DELTA
Represents a positive change from the previous value. -
NEGATIVE_DELTA
Represents a negative change from the previous value.
-
-
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
-