Package pulse.ui.components.buttons
Enum LoaderButton.DataType
- java.lang.Object
-
- java.lang.Enum<LoaderButton.DataType>
-
- pulse.ui.components.buttons.LoaderButton.DataType
-
- All Implemented Interfaces:
Serializable
,Comparable<LoaderButton.DataType>
- Enclosing class:
- LoaderButton
public static enum LoaderButton.DataType extends Enum<LoaderButton.DataType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DENSITY
HEAT_CAPACITY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LoaderButton.DataType
valueOf(String name)
Returns the enum constant of this type with the specified name.static LoaderButton.DataType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEAT_CAPACITY
public static final LoaderButton.DataType HEAT_CAPACITY
-
DENSITY
public static final LoaderButton.DataType DENSITY
-
-
Method Detail
-
values
public static LoaderButton.DataType[] 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 (LoaderButton.DataType c : LoaderButton.DataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoaderButton.DataType 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
-
-