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