public static enum EPPLaunchPolicyPhase.Mode extends java.lang.Enum<EPPLaunchPolicyPhase.Mode>
Mode
defines how the phase operates, which include the following
possible values:fcfs
- In this mode, each domain name is immediately created
and there is no use of an application identifier.pendingRegistration
- In this mode, the domain name is created
with the "pendingCreate" status with no use of an application identifier.
pendingApplication
- In this mode, the domain name, referred
to as a domain application, is created in the "pendingCreate" status with
the server returning an application identifier in the create response for
the client to use in subsequent commands (info, update, delete). When a
domain application is allocated, it will become a domain without the use
of an application identifier.Enum Constant and Description |
---|
fcfs |
pendingApplication |
pendingRegistration |
Modifier and Type | Method and Description |
---|---|
static EPPLaunchPolicyPhase.Mode |
getMode(java.lang.String aString)
Get the mode enumerated value given the matching string.
|
java.lang.String |
toString()
Convert the enumerated
Mode value to a String . |
static EPPLaunchPolicyPhase.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EPPLaunchPolicyPhase.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPPLaunchPolicyPhase.Mode fcfs
public static final EPPLaunchPolicyPhase.Mode pendingRegistration
public static final EPPLaunchPolicyPhase.Mode pendingApplication
public static EPPLaunchPolicyPhase.Mode[] values()
for (EPPLaunchPolicyPhase.Mode c : EPPLaunchPolicyPhase.Mode.values()) System.out.println(c);
public static EPPLaunchPolicyPhase.Mode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static EPPLaunchPolicyPhase.Mode getMode(java.lang.String aString)
aString
- Mode
enumerated string to convert to an enumerated
Mode
instance.Mode
value matching the String
.java.security.InvalidParameterException
- If aString
does not match an enumerated Mode
string value.public java.lang.String toString()
Mode
value to a String
.toString
in class java.lang.Enum<EPPLaunchPolicyPhase.Mode>