public enum OIDCResponseMode extends Enum<OIDCResponseMode>
Modifier and Type | Method and Description |
---|---|
static OIDCResponseMode |
parse(String responseMode,
OIDCResponseType responseType) |
static OIDCResponseMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OIDCResponseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OIDCResponseMode QUERY
public static final OIDCResponseMode FRAGMENT
public static final OIDCResponseMode FORM_POST
public static OIDCResponseMode[] values()
for (OIDCResponseMode c : OIDCResponseMode.values()) System.out.println(c);
public static OIDCResponseMode 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 static OIDCResponseMode parse(String responseMode, OIDCResponseType responseType)
Copyright © 2020 JBoss by Red Hat. All rights reserved.