@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum TimeGranularity extends Enum<TimeGranularity>
Enum Constant and Description |
---|
DAY |
HOUR |
MILLISECOND |
MINUTE |
MONTH |
QUARTER |
SECOND |
WEEK |
YEAR |
Modifier and Type | Method and Description |
---|---|
static TimeGranularity |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static TimeGranularity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeGranularity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeGranularity YEAR
public static final TimeGranularity QUARTER
public static final TimeGranularity MONTH
public static final TimeGranularity WEEK
public static final TimeGranularity DAY
public static final TimeGranularity HOUR
public static final TimeGranularity MINUTE
public static final TimeGranularity SECOND
public static final TimeGranularity MILLISECOND
public static TimeGranularity[] values()
for (TimeGranularity c : TimeGranularity.values()) System.out.println(c);
public static TimeGranularity valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<TimeGranularity>
public static TimeGranularity fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.