Package org.geotools.gce.imagemosaic
Enum Class PathType
- All Implemented Interfaces:
Serializable
,Comparable<PathType>
,Constable
Enum that can be use to distinguish between relative paths and absolute paths when trying to load a granuleDescriptor
for a mosaic.
- Author:
- Simone Giannecchini, GeoSolutions SAS, Stefan Alfons Krueger (alfonx), Wikisquare.de : Support for jar:file:foo.jar/bar.properties URLs
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionabstract URL
resolvePath
(String parentLocation, String location) Resolve a path for a granuleDescriptor given the parent location and location itself.static PathType
Returns the enum constant of this class with the specified name.static PathType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RELATIVE
-
ABSOLUTE
-
URL
-
-
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
-
resolvePath
Resolve a path for a granuleDescriptor given the parent location and location itself.the location can never be null, while the parent location could be null, as an instance when the path is relative.
- Returns:
- a
File
instance that points to a location which could be relative or absolute depending on the flavor of the enum where this method is applied. This method might returnnull
in case something bad happens.
-