public static enum DataRecord.Status extends java.lang.Enum<DataRecord.Status>
| Enum Constant and Description |
|---|
COMPLETED |
EXPIRED |
INPROGRESS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static DataRecord.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataRecord.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataRecord.Status INPROGRESS
public static final DataRecord.Status COMPLETED
public static final DataRecord.Status EXPIRED
public static DataRecord.Status[] values()
for (DataRecord.Status c : DataRecord.Status.values()) System.out.println(c);
public static DataRecord.Status valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<DataRecord.Status>Copyright © 2023. All rights reserved.