Package io.keikai.api
Enum Range.AutoFillType
- java.lang.Object
-
- java.lang.Enum<Range.AutoFillType>
-
- io.keikai.api.Range.AutoFillType
-
- All Implemented Interfaces:
Serializable
,Comparable<Range.AutoFillType>
- Enclosing interface:
- Range
public static enum Range.AutoFillType extends Enum<Range.AutoFillType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Range.AutoFillType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Range.AutoFillType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COPY
public static final Range.AutoFillType COPY
-
DAYS
public static final Range.AutoFillType DAYS
-
DEFAULT
public static final Range.AutoFillType DEFAULT
-
FORMATS
public static final Range.AutoFillType FORMATS
-
MONTHS
public static final Range.AutoFillType MONTHS
-
SERIES
public static final Range.AutoFillType SERIES
-
VALUES
public static final Range.AutoFillType VALUES
-
WEEKDAYS
public static final Range.AutoFillType WEEKDAYS
-
YEARS
public static final Range.AutoFillType YEARS
-
GROWTH_TREND
public static final Range.AutoFillType GROWTH_TREND
-
LINER_TREND
public static final Range.AutoFillType LINER_TREND
-
-
Method Detail
-
values
public static Range.AutoFillType[] 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 (Range.AutoFillType c : Range.AutoFillType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Range.AutoFillType 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
-
-