Package org.geotools.api.filter.identity
Enum Class Version.Action
- All Implemented Interfaces:
Serializable,Comparable<Version.Action>,Constable
- Enclosing class:
- Version
The VersionAction attribute may also be the strings FIRST, LATEST, PREVIOUS, NEXT and ALL.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSelect all available version of a resource.Select the first version of a resource.Select the most recent version of a resource.Select the previous version of a resource relative to the version specified using the rid attribute.Select the next version of a resource relative to the version specified using the rid attribute. -
Method Summary
Modifier and TypeMethodDescriptionstatic Version.Actionlookup(int ordinal) static Version.ActionReturns the enum constant of this class with the specified name.static Version.Action[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FIRST
Select the first version of a resource. -
LAST
Select the most recent version of a resource. -
NEXT
Select the previous version of a resource relative to the version specified using the rid attribute. -
PREVIOUS
Select the next version of a resource relative to the version specified using the rid attribute. -
ALL
Select all available version of a resource.
-
-
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
-
lookup
-