@Generated(value="software.amazon.awssdk:codegen") public enum TimeGranularity extends Enum<TimeGranularity>
| Enum Constant and Description |
|---|
DAY |
HOUR |
MILLISECOND |
MINUTE |
MONTH |
QUARTER |
SECOND |
UNKNOWN_TO_SDK_VERSION |
WEEK |
YEAR |
| Modifier and Type | Method and Description |
|---|---|
static TimeGranularity |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<TimeGranularity> |
knownValues()
|
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 final TimeGranularity UNKNOWN_TO_SDK_VERSION
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 valuepublic static Set<TimeGranularity> knownValues()
values() to return a Set of all values known to the SDK. This will return
all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known TimeGranularitysCopyright © 2023. All rights reserved.