
public enum CredentialsUpdateOperation extends Enum<CredentialsUpdateOperation>
| Enum Constant and Description |
|---|
CHANGE_PASSWORD |
RESET_PASSWORD |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static CredentialsUpdateOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CredentialsUpdateOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialsUpdateOperation CHANGE_PASSWORD
public static final CredentialsUpdateOperation RESET_PASSWORD
public static CredentialsUpdateOperation[] values()
for (CredentialsUpdateOperation c : CredentialsUpdateOperation.values()) System.out.println(c);
public static CredentialsUpdateOperation 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<CredentialsUpdateOperation>Copyright (c) 2011-2014 Eike Stepper (Berlin, Germany) and others.