public enum EventTimeFormat extends Enum<EventTimeFormat>
| Enum Constant and Description |
|---|
RFC1123 |
RFC3339 |
RFC822 |
RFC850 |
Unix |
| Modifier and Type | Method and Description |
|---|---|
static EventTimeFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTimeFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTimeFormat RFC822
public static final EventTimeFormat RFC850
public static final EventTimeFormat RFC1123
public static final EventTimeFormat RFC3339
public static final EventTimeFormat Unix
public static EventTimeFormat[] values()
for (EventTimeFormat c : EventTimeFormat.values()) System.out.println(c);
public static EventTimeFormat 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 © 2024. All Rights Reserved.