Package de.alpharogroup.user.auth.enums
Enum ResetPasswordRest
- java.lang.Object
-
- java.lang.Enum<ResetPasswordRest>
-
- de.alpharogroup.user.auth.enums.ResetPasswordRest
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ResetPasswordRest>
public enum ResetPasswordRest extends java.lang.Enum<ResetPasswordRest>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMAIL_REST_PATHMAIN_REST_PATHNEW_PASSWORD_REST_PATHVERIFY_TOKEN_REST_PATH
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringEMAIL_PATHstatic java.lang.StringMAIN_PATHstatic java.lang.StringNEW_PASSWORD_PATHstatic java.lang.StringVERIFY_TOKEN_PATH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResetPasswordRestvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ResetPasswordRest[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAIN_REST_PATH
public static final ResetPasswordRest MAIN_REST_PATH
-
EMAIL_REST_PATH
public static final ResetPasswordRest EMAIL_REST_PATH
-
NEW_PASSWORD_REST_PATH
public static final ResetPasswordRest NEW_PASSWORD_REST_PATH
-
VERIFY_TOKEN_REST_PATH
public static final ResetPasswordRest VERIFY_TOKEN_REST_PATH
-
-
Field Detail
-
MAIN_PATH
public static final java.lang.String MAIN_PATH
- See Also:
- Constant Field Values
-
EMAIL_PATH
public static final java.lang.String EMAIL_PATH
- See Also:
- Constant Field Values
-
NEW_PASSWORD_PATH
public static final java.lang.String NEW_PASSWORD_PATH
- See Also:
- Constant Field Values
-
VERIFY_TOKEN_PATH
public static final java.lang.String VERIFY_TOKEN_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ResetPasswordRest[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResetPasswordRest c : ResetPasswordRest.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResetPasswordRest valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-