public static enum VDB.Status extends Enum<VDB.Status>
Enum Constant and Description |
---|
ACTIVE
In the vdb repository and querable, but not necessarily valid
|
FAILED
A vdb that cannot be successfully loaded - and cannot later transition to active
|
LOADING
Initial state waiting for metadata to load
|
REMOVED |
Modifier and Type | Method and Description |
---|---|
static VDB.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VDB.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VDB.Status LOADING
public static final VDB.Status ACTIVE
public static final VDB.Status FAILED
public static final VDB.Status REMOVED
public static VDB.Status[] values()
for (VDB.Status c : VDB.Status.values()) System.out.println(c);
public static VDB.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 nullCopyright © 2019. All rights reserved.