public enum SamlRequestOrResponse extends Enum<SamlRequestOrResponse>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isRequest() |
boolean |
isResponse() |
static SamlRequestOrResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamlRequestOrResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamlRequestOrResponse REQUEST
public static final SamlRequestOrResponse RESPONSE
public static SamlRequestOrResponse[] values()
for (SamlRequestOrResponse c : SamlRequestOrResponse.values()) System.out.println(c);
public static SamlRequestOrResponse valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic boolean isRequest()
public boolean isResponse()
Copyright © 2013 Seam Framework. All Rights Reserved.