Package tech.tablesaw.plotly.components
Enum Axis.Spikes.SpikeMode
- java.lang.Object
-
- java.lang.Enum<Axis.Spikes.SpikeMode>
-
- tech.tablesaw.plotly.components.Axis.Spikes.SpikeMode
-
- All Implemented Interfaces:
Serializable
,Comparable<Axis.Spikes.SpikeMode>
- Enclosing class:
- Axis.Spikes
public static enum Axis.Spikes.SpikeMode extends Enum<Axis.Spikes.SpikeMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACROSS
ACROSS_AND_MARKER
MARKER
TO_AXIS
TO_AXIS_AND_ACROSS
TO_AXIS_AND_ACROSS_AND_MARKER
TO_AXIS_AND_MARKER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static Axis.Spikes.SpikeMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Axis.Spikes.SpikeMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TO_AXIS
public static final Axis.Spikes.SpikeMode TO_AXIS
-
ACROSS
public static final Axis.Spikes.SpikeMode ACROSS
-
MARKER
public static final Axis.Spikes.SpikeMode MARKER
-
TO_AXIS_AND_ACROSS
public static final Axis.Spikes.SpikeMode TO_AXIS_AND_ACROSS
-
TO_AXIS_AND_MARKER
public static final Axis.Spikes.SpikeMode TO_AXIS_AND_MARKER
-
ACROSS_AND_MARKER
public static final Axis.Spikes.SpikeMode ACROSS_AND_MARKER
-
TO_AXIS_AND_ACROSS_AND_MARKER
public static final Axis.Spikes.SpikeMode TO_AXIS_AND_ACROSS_AND_MARKER
-
-
Method Detail
-
values
public static Axis.Spikes.SpikeMode[] 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 (Axis.Spikes.SpikeMode c : Axis.Spikes.SpikeMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Axis.Spikes.SpikeMode 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<Axis.Spikes.SpikeMode>
-
-