public enum ChangePasswordResult extends java.lang.Enum<ChangePasswordResult>
| Enum Constant | Description |
|---|---|
INCORRECT |
|
INVALID |
|
MISMATCH |
|
SUCCESS |
|
TOO_SHORT |
| Modifier and Type | Method | Description |
|---|---|---|
static ChangePasswordResult |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ChangePasswordResult[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangePasswordResult SUCCESS
public static final ChangePasswordResult INVALID
public static final ChangePasswordResult INCORRECT
public static final ChangePasswordResult MISMATCH
public static final ChangePasswordResult TOO_SHORT
public static ChangePasswordResult[] values()
for (ChangePasswordResult c : ChangePasswordResult.values()) System.out.println(c);
public static ChangePasswordResult 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 nullCopyright © 2018 Ajibot. All rights reserved.