public enum Availability extends Enum<Availability>
| Enum Constant and Description |
|---|
NEARLINE |
OFFLINE |
ONLINE |
UNAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
static Availability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Availability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Availability ONLINE
public static final Availability NEARLINE
public static final Availability OFFLINE
public static final Availability UNAVAILABLE
public static Availability[] values()
for (Availability c : Availability.values()) System.out.println(c);
public static Availability 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.