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