public static enum DataStatus.STATUS extends Enum<DataStatus.STATUS>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static DataStatus.STATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataStatus.STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataStatus.STATUS ERROR
public static final DataStatus.STATUS SUCCESS
public static final DataStatus.STATUS ABORT
public static DataStatus.STATUS[] values()
for (DataStatus.STATUS c : DataStatus.STATUS.values()) System.out.println(c);
public static DataStatus.STATUS 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 String toString()
toString
in class Enum<DataStatus.STATUS>
Copyright © 2015–2019 Cloud Software Group, Inc.. All rights reserved.