Package org.sourceid.saml20.adapter.gui
Enum OAuthClientSelectionFieldDescriptor.FilterableField
- java.lang.Object
-
- java.lang.Enum<OAuthClientSelectionFieldDescriptor.FilterableField>
-
- org.sourceid.saml20.adapter.gui.OAuthClientSelectionFieldDescriptor.FilterableField
-
- All Implemented Interfaces:
Serializable,Comparable<OAuthClientSelectionFieldDescriptor.FilterableField>
- Enclosing class:
- OAuthClientSelectionFieldDescriptor
public static enum OAuthClientSelectionFieldDescriptor.FilterableField extends Enum<OAuthClientSelectionFieldDescriptor.FilterableField>
define the set of fields that may be filterable in a search
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CERT_ISSUER_IDCIBA_POLICY_IDDEFAULT_ATM_IDGRANT_TYPEOIDC_POLICY_IDTEPP_ID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OAuthClientSelectionFieldDescriptor.FilterableFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static OAuthClientSelectionFieldDescriptor.FilterableField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CERT_ISSUER_ID
public static final OAuthClientSelectionFieldDescriptor.FilterableField CERT_ISSUER_ID
-
CIBA_POLICY_ID
public static final OAuthClientSelectionFieldDescriptor.FilterableField CIBA_POLICY_ID
-
DEFAULT_ATM_ID
public static final OAuthClientSelectionFieldDescriptor.FilterableField DEFAULT_ATM_ID
-
GRANT_TYPE
public static final OAuthClientSelectionFieldDescriptor.FilterableField GRANT_TYPE
-
OIDC_POLICY_ID
public static final OAuthClientSelectionFieldDescriptor.FilterableField OIDC_POLICY_ID
-
TEPP_ID
public static final OAuthClientSelectionFieldDescriptor.FilterableField TEPP_ID
-
-
Method Detail
-
values
public static OAuthClientSelectionFieldDescriptor.FilterableField[] 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 (OAuthClientSelectionFieldDescriptor.FilterableField c : OAuthClientSelectionFieldDescriptor.FilterableField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OAuthClientSelectionFieldDescriptor.FilterableField 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
-
-