public enum Binding extends java.lang.Enum<Binding>
Enum Constant and Description |
---|
ARTIFACT |
DISCOVERY |
PAOS |
POST |
POST_SIMPLE_SIGN |
REDIRECT |
REQUEST_INITIATOR |
SAML_1_0_BROWSER_ARTIFACT |
SAML_1_0_BROWSER_POST |
SOAP |
URI |
Modifier and Type | Method and Description |
---|---|
static Binding |
fromUrn(java.lang.String other) |
java.lang.String |
toString() |
static Binding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Binding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Binding POST
public static final Binding REDIRECT
public static final Binding URI
public static final Binding ARTIFACT
public static final Binding POST_SIMPLE_SIGN
public static final Binding PAOS
public static final Binding SOAP
public static final Binding DISCOVERY
public static final Binding REQUEST_INITIATOR
public static final Binding SAML_1_0_BROWSER_POST
public static final Binding SAML_1_0_BROWSER_ARTIFACT
public static Binding[] values()
for (Binding c : Binding.values()) System.out.println(c);
public static Binding valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Binding fromUrn(java.lang.String other)
public java.lang.String toString()
toString
in class java.lang.Enum<Binding>