public enum RecordStatus extends Enum<RecordStatus>
| Enum Constant and Description |
|---|
complete |
queued |
unpublished |
| Modifier and Type | Method and Description |
|---|---|
static RecordStatus |
forValue(String value) |
String |
toValue() |
static RecordStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordStatus queued
public static final RecordStatus unpublished
public static final RecordStatus complete
public static RecordStatus[] values()
for (RecordStatus c : RecordStatus.values()) System.out.println(c);
public static RecordStatus 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 static RecordStatus forValue(String value)
public String toValue()
Copyright © 2017. All rights reserved.