public static enum INamedParameters.Type extends Enum<INamedParameters.Type>
Enum Constant and Description |
---|
MANUAL
The named parameter is set manually in the application code
|
PATH
The named parameter is read/parsed from the url path
|
QUERY_STRING
The named parameter is read/parsed from the query string
|
Modifier and Type | Method and Description |
---|---|
static INamedParameters.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static INamedParameters.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final INamedParameters.Type MANUAL
public static final INamedParameters.Type QUERY_STRING
public static final INamedParameters.Type PATH
public static INamedParameters.Type[] values()
for (INamedParameters.Type c : INamedParameters.Type.values()) System.out.println(c);
public static INamedParameters.Type 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 © 2006–2022 Apache Software Foundation. All rights reserved.