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