Module org.apache.wicket.request
Enum Class INamedParameters.Type
java.lang.Object
java.lang.Enum<INamedParameters.Type>
org.apache.wicket.request.mapper.parameter.INamedParameters.Type
- All Implemented Interfaces:
Serializable
,Comparable<INamedParameters.Type>
,Constable
- Enclosing interface:
- INamedParameters
A hint where the parameter is read/parsed from.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe named parameter is set manually in the application codeThe named parameter is read/parsed from the url pathThe named parameter is read/parsed from the query string -
Method Summary
Modifier and TypeMethodDescriptionstatic INamedParameters.Type
Returns the enum constant of this class with the specified name.static INamedParameters.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MANUAL
The named parameter is set manually in the application code -
QUERY_STRING
The named parameter is read/parsed from the query string -
PATH
The named parameter is read/parsed from the url path
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-