public static enum Namespaces.Status extends Enum<Namespaces.Status>
| Enum Constant and Description |
|---|
IN_USE
in use flag.
|
LEGACY
legacy flag.
|
| Modifier and Type | Method and Description |
|---|---|
static Namespaces.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Namespaces.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Namespaces.Status LEGACY
public static final Namespaces.Status IN_USE
public static Namespaces.Status[] values()
for (Namespaces.Status c : Namespaces.Status.values()) System.out.println(c);
public static Namespaces.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 The University of Manchester. All rights reserved.