Package org.opencms.jsp.userdata
Enum CmsUserDataRequestType
- All Implemented Interfaces:
Serializable
,Comparable<CmsUserDataRequestType>
,java.lang.constant.Constable
Enum representing the type of user data request.
A user can request his data either with a user name and password, or with his email address. In the latter case , more than one user can potentially be found.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEmail user data request - user entered their email address, potentially many matching OpenCms users.Single-user data request - user entered their user name and password. -
Method Summary
Modifier and TypeMethodDescriptionstatic CmsUserDataRequestType
Returns the enum constant of this type with the specified name.static CmsUserDataRequestType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
singleUser
Single-user data request - user entered their user name and password. -
email
Email user data request - user entered their email address, potentially many matching OpenCms users.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-