public static enum Match.Kind extends Enum<Match.Kind>
| Enum Constant and Description |
|---|
FULL
URL request matches on URI and Method
|
URI
URL request matches on URI only
|
| Modifier and Type | Method and Description |
|---|---|
static Match.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Match.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Match.Kind URI
public static final Match.Kind FULL
public static Match.Kind[] values()
for (Match.Kind c : Match.Kind.values()) System.out.println(c);
public static Match.Kind 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 © 2005–2016 Alfresco Software. All rights reserved.