Package org.pepstock.charba.client.data
Enum Dataset.CanvasObjectProperty
- java.lang.Object
-
- java.lang.Enum<Dataset.CanvasObjectProperty>
-
- org.pepstock.charba.client.data.Dataset.CanvasObjectProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<Dataset.CanvasObjectProperty>
,Key
- Enclosing class:
- Dataset
protected static enum Dataset.CanvasObjectProperty extends Enum<Dataset.CanvasObjectProperty>
Name of common properties of native object related to a dataset.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUND_COLOR
BORDER_COLOR
HOVER_BACKGROUND_COLOR
HOVER_BORDER_COLOR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasPattern()
String
value()
Returns the name value of propertystatic Dataset.CanvasObjectProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static Dataset.CanvasObjectProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BACKGROUND_COLOR
public static final Dataset.CanvasObjectProperty BACKGROUND_COLOR
-
BORDER_COLOR
public static final Dataset.CanvasObjectProperty BORDER_COLOR
-
HOVER_BACKGROUND_COLOR
public static final Dataset.CanvasObjectProperty HOVER_BACKGROUND_COLOR
-
HOVER_BORDER_COLOR
public static final Dataset.CanvasObjectProperty HOVER_BORDER_COLOR
-
-
Method Detail
-
values
public static Dataset.CanvasObjectProperty[] 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 (Dataset.CanvasObjectProperty c : Dataset.CanvasObjectProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dataset.CanvasObjectProperty 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
-
value
public String value()
Description copied from interface:Key
Returns the name value of property
-
hasPattern
public boolean hasPattern()
-
-