Package com.networknt.http.client
Enum ClientRequestComposerProvider.ClientRequestComposers
- java.lang.Object
-
- java.lang.Enum<ClientRequestComposerProvider.ClientRequestComposers>
-
- com.networknt.http.client.ClientRequestComposerProvider.ClientRequestComposers
-
- All Implemented Interfaces:
Serializable,Comparable<ClientRequestComposerProvider.ClientRequestComposers>
- Enclosing class:
- ClientRequestComposerProvider
public static enum ClientRequestComposerProvider.ClientRequestComposers extends Enum<ClientRequestComposerProvider.ClientRequestComposers>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_AUTHENTICATED_USER_REQUEST_COMPOSERCLIENT_CREDENTIAL_REQUEST_COMPOSERSAML_BEARER_REQUEST_COMPOSER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientRequestComposerProvider.ClientRequestComposersvalueOf(String name)Returns the enum constant of this type with the specified name.static ClientRequestComposerProvider.ClientRequestComposers[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_CREDENTIAL_REQUEST_COMPOSER
public static final ClientRequestComposerProvider.ClientRequestComposers CLIENT_CREDENTIAL_REQUEST_COMPOSER
-
SAML_BEARER_REQUEST_COMPOSER
public static final ClientRequestComposerProvider.ClientRequestComposers SAML_BEARER_REQUEST_COMPOSER
-
CLIENT_AUTHENTICATED_USER_REQUEST_COMPOSER
public static final ClientRequestComposerProvider.ClientRequestComposers CLIENT_AUTHENTICATED_USER_REQUEST_COMPOSER
-
-
Method Detail
-
values
public static ClientRequestComposerProvider.ClientRequestComposers[] 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 (ClientRequestComposerProvider.ClientRequestComposers c : ClientRequestComposerProvider.ClientRequestComposers.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientRequestComposerProvider.ClientRequestComposers 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
-
-