public enum DataError extends Enum<DataError>
| Enum Constant and Description |
|---|
DELETED |
EXPIRED |
ILLEGALSTATE |
INVALIDDATA |
NODATA |
NOID |
| Modifier and Type | Method and Description |
|---|---|
static DataError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataError NODATA
public static final DataError INVALIDDATA
public static final DataError NOID
public static final DataError DELETED
public static final DataError EXPIRED
public static final DataError ILLEGALSTATE
public static DataError[] values()
for (DataError c : DataError.values()) System.out.println(c);
public static DataError 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 © 2019. All rights reserved.