Enum RegistrationMVELContextKey
- java.lang.Object
-
- java.lang.Enum<RegistrationMVELContextKey>
-
- pl.edu.icm.unity.engine.api.translation.form.RegistrationMVELContextKey
-
- All Implemented Interfaces:
Serializable
,Comparable<RegistrationMVELContextKey>
public enum RegistrationMVELContextKey extends Enum<RegistrationMVELContextKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description agrs
attr
attrs
groups
idsByType
idsByTypeObj
onIdpEndpoint
rattr
rattrs
registrationForm
requestId
rgroups
ridsByType
ridsByTypeObj
status
triggered
userLocale
validCode
-
Field Summary
Fields Modifier and Type Field Description String
descriptionKey
static String
descriptionPrefix
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Map<String,String>
toMap()
static RegistrationMVELContextKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static RegistrationMVELContextKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
idsByType
public static final RegistrationMVELContextKey idsByType
-
ridsByType
public static final RegistrationMVELContextKey ridsByType
-
idsByTypeObj
public static final RegistrationMVELContextKey idsByTypeObj
-
ridsByTypeObj
public static final RegistrationMVELContextKey ridsByTypeObj
-
attrs
public static final RegistrationMVELContextKey attrs
-
attr
public static final RegistrationMVELContextKey attr
-
rattrs
public static final RegistrationMVELContextKey rattrs
-
rattr
public static final RegistrationMVELContextKey rattr
-
groups
public static final RegistrationMVELContextKey groups
-
rgroups
public static final RegistrationMVELContextKey rgroups
-
status
public static final RegistrationMVELContextKey status
-
triggered
public static final RegistrationMVELContextKey triggered
-
onIdpEndpoint
public static final RegistrationMVELContextKey onIdpEndpoint
-
userLocale
public static final RegistrationMVELContextKey userLocale
-
registrationForm
public static final RegistrationMVELContextKey registrationForm
-
requestId
public static final RegistrationMVELContextKey requestId
-
agrs
public static final RegistrationMVELContextKey agrs
-
validCode
public static final RegistrationMVELContextKey validCode
-
-
Field Detail
-
descriptionKey
public final String descriptionKey
-
descriptionPrefix
public static final String descriptionPrefix
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static RegistrationMVELContextKey[] 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 (RegistrationMVELContextKey c : RegistrationMVELContextKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegistrationMVELContextKey valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-