public enum ParameterSource extends Enum<ParameterSource>
Parameter comes from.| Enum Constant and Description |
|---|
ADDITIONAL
Parameter comes from the request.
|
PATH
Parameter comes from the path.
|
| Modifier and Type | Method and Description |
|---|---|
static ParameterSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterSource PATH
public static final ParameterSource ADDITIONAL
public static ParameterSource[] values()
for (ParameterSource c : ParameterSource.values()) System.out.println(c);
public static ParameterSource 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 nullCopyright © 2025 Open Identity Platform Community. All rights reserved.