com.vaadin.flow.component.charts.model.
Enum DrillUpButtonRelativeTo
- java.lang.Object
-
- java.lang.Enum<DrillUpButtonRelativeTo>
-
- com.vaadin.flow.component.charts.model.DrillUpButtonRelativeTo
-
All Implemented Interfaces:
ChartEnum
,Serializable
,Comparable<DrillUpButtonRelativeTo>
public enum DrillUpButtonRelativeTo extends Enum<DrillUpButtonRelativeTo> implements ChartEnum
What box to align the button to.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PLOTBOX
SPACINGBOX
-
Method Summary
All Methods Modifier and Type Method Description String
toString()
static DrillUpButtonRelativeTo
valueOf​(String name)
Returns the enum constant of this type with the specified name.
static DrillUpButtonRelativeTo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLOTBOX
public static final DrillUpButtonRelativeTo PLOTBOX
-
SPACINGBOX
public static final DrillUpButtonRelativeTo SPACINGBOX
-
-
Method Detail
-
values
public static DrillUpButtonRelativeTo[] 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 (DrillUpButtonRelativeTo c : DrillUpButtonRelativeTo.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DrillUpButtonRelativeTo 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<DrillUpButtonRelativeTo>
-
-