Package org.pepstock.charba.client.enums
Enum DefaultAnimationCollectionKey
- java.lang.Object
-
- java.lang.Enum<DefaultAnimationCollectionKey>
-
- org.pepstock.charba.client.enums.DefaultAnimationCollectionKey
-
- All Implemented Interfaces:
Serializable
,Comparable<DefaultAnimationCollectionKey>
,Key
public enum DefaultAnimationCollectionKey extends Enum<DefaultAnimationCollectionKey> implements Key
Cores animation collections names provided out of the box by CHART.JS.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
is(String collection)
Returnstrue
if the argument is equals to a default animation collection.static boolean
is(Key collection)
Returnstrue
if the argument is equals to a default animation collection.String
value()
Returns the name value of propertystatic DefaultAnimationCollectionKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static DefaultAnimationCollectionKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COLORS
public static final DefaultAnimationCollectionKey COLORS
Defines the default animation collection for colors.
-
NUMBERS
public static final DefaultAnimationCollectionKey NUMBERS
Defines the default animation collection for numbers.
-
VISIBLE
public static final DefaultAnimationCollectionKey VISIBLE
Defines the default animation collection for visible property.
-
-
Method Detail
-
values
public static DefaultAnimationCollectionKey[] 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 (DefaultAnimationCollectionKey c : DefaultAnimationCollectionKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultAnimationCollectionKey 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
-
is
public static boolean is(Key collection)
Returnstrue
if the argument is equals to a default animation collection.- Parameters:
collection
- the animation collection to check- Returns:
true
if the argument is equals to a default animation collection
-
is
public static boolean is(String collection)
Returnstrue
if the argument is equals to a default animation collection.- Parameters:
collection
- the animation collection to check- Returns:
true
if the argument is equals to a default animation collection
-
-