public static enum TimeZoneAware.State extends Enum<TimeZoneAware.State>
| Enum Constant and Description |
|---|
Aware
The method is aware and treats the time zone as documented.
|
CheckPending
The method includes time functionality, but has not yet been checked.
|
Independent
Time zone doesn't matter.
|
NotAware
The time zone is not taken into account.
|
| Modifier and Type | Method and Description |
|---|---|
static TimeZoneAware.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeZoneAware.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeZoneAware.State Independent
public static final TimeZoneAware.State Aware
public static final TimeZoneAware.State NotAware
public static final TimeZoneAware.State CheckPending
public static TimeZoneAware.State[] values()
for (TimeZoneAware.State c : TimeZoneAware.State.values()) System.out.println(c);
public static TimeZoneAware.State 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 nullCopyright © 2018 trivago. All rights reserved.