public enum DataBoxState extends Enum<DataBoxState>
| Enum Constant and Description |
|---|
DELETED |
ERROR |
INACTIVE |
IS_ACCESSIBLE |
PERMANENTLY_INACCESSIBLE |
TEMPORARY_INACCESSIBLE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DataBoxState |
create(int state) |
static DataBoxState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataBoxState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataBoxState UNKNOWN
public static final DataBoxState ERROR
public static final DataBoxState IS_ACCESSIBLE
public static final DataBoxState TEMPORARY_INACCESSIBLE
public static final DataBoxState INACTIVE
public static final DataBoxState PERMANENTLY_INACCESSIBLE
public static final DataBoxState DELETED
public static DataBoxState[] values()
for (DataBoxState c : DataBoxState.values()) System.out.println(c);
public static DataBoxState 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 DataBoxState create(int state)
Copyright © 2017. All rights reserved.