public enum MappingMatch extends java.lang.Enum<MappingMatch>
Enum Constant and Description |
---|
CONTEXT_ROOT |
DEFAULT |
EXACT |
EXTENSION |
IMPLICIT |
PATH |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static MappingMatch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MappingMatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingMatch CONTEXT_ROOT
public static final MappingMatch DEFAULT
public static final MappingMatch EXACT
public static final MappingMatch EXTENSION
public static final MappingMatch IMPLICIT
public static final MappingMatch PATH
public static final MappingMatch UNKNOWN
public static MappingMatch[] values()
for (MappingMatch c : MappingMatch.values()) System.out.println(c);
public static MappingMatch valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2000-2016 Apache Software Foundation. All Rights Reserved.