Package org.pepstock.charba.client.data
Enum AbstractDataPoint.CharbaProperty
- java.lang.Object
-
- java.lang.Enum<AbstractDataPoint.CharbaProperty>
-
- org.pepstock.charba.client.data.AbstractDataPoint.CharbaProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractDataPoint.CharbaProperty>
,Key
- Enclosing class:
- AbstractDataPoint
protected static enum AbstractDataPoint.CharbaProperty extends Enum<AbstractDataPoint.CharbaProperty> implements Key
Name of properties of native object.
No private because it is used by time series item
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHARBA_X_TYPE
CHARBA_Y_TYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
value()
Returns the name value of propertystatic AbstractDataPoint.CharbaProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractDataPoint.CharbaProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHARBA_X_TYPE
public static final AbstractDataPoint.CharbaProperty CHARBA_X_TYPE
-
CHARBA_Y_TYPE
public static final AbstractDataPoint.CharbaProperty CHARBA_Y_TYPE
-
-
Method Detail
-
values
public static AbstractDataPoint.CharbaProperty[] 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 (AbstractDataPoint.CharbaProperty c : AbstractDataPoint.CharbaProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractDataPoint.CharbaProperty 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
-
-