public enum RoutingMode extends Enum<RoutingMode>
| Enum Constant and Description |
|---|
EQUALS
The URI template must exactly match a request's resource name in order
for the route to be selected.
|
STARTS_WITH
The URI template must match the beginning of a request's resource name in
order for the route to be selected.
|
| Modifier and Type | Method and Description |
|---|---|
static RoutingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutingMode EQUALS
public static final RoutingMode STARTS_WITH
public static RoutingMode[] values()
for (RoutingMode c : RoutingMode.values()) System.out.println(c);
public static RoutingMode 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.