Package org.pepstock.charba.client.enums
Class RelativeDatasetIndexFill
- java.lang.Object
-
- org.pepstock.charba.client.enums.RelativeDatasetIndexFill
-
public final class RelativeDatasetIndexFill extends Object
Fill object to configure chart to use a relative dataset index.
Relative dataset index, as string, is composed by sign and value, both mandatory.
Here are same examples: ("-1", "-2", "+1", "+2",...).- Author:
- Andrea "Stock" Stocchero
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_VALUEDefault value for relative dataset index,AbsoluteDatasetIndexFill.DEFAULT_VALUE_AS_INTas string.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FillingModegetMode()Returns the type of filling.StringgetValue()Returns the value as string (valid ONLY for relative dataset index and predefined), otherwiseUndefined.STRING.intgetValueAsInt()Returns the value as integer (valid ONLY for absolute dataset index), otherwiseUndefined.INTEGER.Stringvalue()Returns the name value of property
-
-
-
Field Detail
-
DEFAULT_VALUE
public static final String DEFAULT_VALUE
Default value for relative dataset index,AbsoluteDatasetIndexFill.DEFAULT_VALUE_AS_INTas string.
-
-
Method Detail
-
value
public String value()
Description copied from interface:KeyReturns the name value of property- Returns:
- the name value of property
-
getMode
public final FillingMode getMode()
Description copied from interface:IsFillReturns the type of filling.
-
getValueAsInt
public int getValueAsInt()
Description copied from interface:IsFillReturns the value as integer (valid ONLY for absolute dataset index), otherwiseUndefined.INTEGER.- Specified by:
getValueAsIntin interfaceIsFill- Returns:
- the value as integer (valid ONLY for absolute dataset index), otherwise
Undefined.INTEGER.
-
getValue
public String getValue()
Description copied from interface:IsFillReturns the value as string (valid ONLY for relative dataset index and predefined), otherwiseUndefined.STRING.- Specified by:
getValuein interfaceIsFill- Returns:
- the value as string (valid ONLY for relative dataset index and predefined), otherwise
Undefined.STRING.
-
-