Enum Class PathType
- All Implemented Interfaces:
Serializable
,Comparable<PathType>
,Constable
Specify the type of paths. It is used
by the
PathSetter
annotation and PathConverter
.- Since:
- 2.17
- Author:
- Nicklas
- Last modified
- $Date: 2010-11-10 12:16:51 +0100 (on, 10 nov 2010) $
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPaths should be absolute paths from the root of the web server.Paths should be relative to the web application context. -
Constructor Summary
-
Method Summary
-
Enum Constant Details
-
ABSOLUTE
Paths should be absolute paths from the root of the web server. -
CONTEXT_RELATIVE
Paths should be relative to the web application context. The difference is usually that the first part of the absolute path is missing.
-
-
Constructor Details
-
PathType
private PathType()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-