public static enum Domain.Status extends Enum<Domain.Status>
| Enum Constant and Description |
|---|
OWNED
Domain is privately owned
|
SHARED
Domain is shared
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Domain.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Domain.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Domain.Status OWNED
public static final Domain.Status SHARED
public static Domain.Status[] values()
for (Domain.Status c : Domain.Status.values()) System.out.println(c);
public static Domain.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<Domain.Status>Copyright © 2016 Pivotal Software, Inc.. All rights reserved.