public enum Timestamp extends Enum<Timestamp>
Task.| Enum Constant and Description |
|---|
CLAIMED |
COMPLETED |
CREATED |
DUE |
MODIFIED |
PLANNED |
| Modifier and Type | Method and Description |
|---|---|
static Timestamp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Timestamp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Timestamp CREATED
public static final Timestamp CLAIMED
public static final Timestamp COMPLETED
public static final Timestamp MODIFIED
public static final Timestamp PLANNED
public static final Timestamp DUE
public static Timestamp[] values()
for (Timestamp c : Timestamp.values()) System.out.println(c);
public static Timestamp 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 © 2020. All rights reserved.