public enum ClientIdPolicy extends Enum<ClientIdPolicy>
| Enum Constant and Description |
|---|
RESTRICTED |
UNRESTRICTED |
| Modifier and Type | Method and Description |
|---|---|
static ClientIdPolicy |
fromValue(String value) |
String |
toString() |
String |
value() |
static ClientIdPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientIdPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientIdPolicy RESTRICTED
public static final ClientIdPolicy UNRESTRICTED
public static ClientIdPolicy[] values()
for (ClientIdPolicy c : ClientIdPolicy.values()) System.out.println(c);
public static ClientIdPolicy 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 static ClientIdPolicy fromValue(String value)
public String toString()
toString in class Enum<ClientIdPolicy>public String value()