Package org.geotools.gce.imagemosaic
Enum PathType
-
- All Implemented Interfaces:
Serializable
,Comparable<PathType>
public enum PathType extends Enum<PathType>
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
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract URL
resolvePath(String parentLocation, String location)
Resolve a path for a granuleDescriptor given the parent location and location itself.static PathType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PathType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static PathType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PathType c : PathType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
resolvePath
public abstract URL resolvePath(String parentLocation, String location)
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.
-
-