public static enum ServletRepository.MappingSearchMode extends Enum<ServletRepository.MappingSearchMode>
Enum Constant and Description |
---|
ALL
Search all the mapping
|
LOWER
Search only the mapping with lower, or equal priority than static content
|
UPPER
Search only the mapping with higher priority than static content
|
Modifier and Type | Method and Description |
---|---|
static ServletRepository.MappingSearchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServletRepository.MappingSearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServletRepository.MappingSearchMode UPPER
public static final ServletRepository.MappingSearchMode LOWER
public static final ServletRepository.MappingSearchMode ALL
public static ServletRepository.MappingSearchMode[] values()
for (ServletRepository.MappingSearchMode c : ServletRepository.MappingSearchMode.values()) System.out.println(c);
public static ServletRepository.MappingSearchMode 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 null