public enum RouteParameterFormatOption extends Enum<RouteParameterFormatOption>
For internal use only. May be renamed or removed in a future release.
| Enum Constant and Description |
|---|
MODIFIER
Parameter modifier, i.e.
|
NAME
The name of the parameter.
|
REGEX
Original template regex.
|
REGEX_NAME
The named template of the parameter, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static RouteParameterFormatOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RouteParameterFormatOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RouteParameterFormatOption NAME
public static final RouteParameterFormatOption REGEX
public static final RouteParameterFormatOption MODIFIER
public static final RouteParameterFormatOption REGEX_NAME
int,
long, bool, string.public static RouteParameterFormatOption[] values()
for (RouteParameterFormatOption c : RouteParameterFormatOption.values()) System.out.println(c);
public static RouteParameterFormatOption 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. All rights reserved.