Module com.hack23.cia.service.api
Enum Class ManageUserAccountRequest.AccountOperation
java.lang.Object
java.lang.Enum<ManageUserAccountRequest.AccountOperation>
com.hack23.cia.service.api.action.admin.ManageUserAccountRequest.AccountOperation
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ManageUserAccountRequest.AccountOperation>,java.lang.constant.Constable
- Enclosing class:
ManageUserAccountRequest
public static enum ManageUserAccountRequest.AccountOperation
extends java.lang.Enum<ManageUserAccountRequest.AccountOperation>
The Enum AccountOperation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe delete.The lock.The password recovery.The reset mfa.The unlock.The verify email. -
Method Summary
Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
DELETE
The delete. -
LOCK
The lock. -
UNLOCK
The unlock. -
VERIFY_EMAIL
The verify email. -
PASSWORD_RECOVERY
The password recovery. -
RESET_MFA
The reset mfa.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-