org.geotools.gce.imagemosaic
Enum PathType
Object
Enum<PathType>
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 |
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. |
RELATIVE
public static final PathType RELATIVE
ABSOLUTE
public static final PathType ABSOLUTE
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 name
NullPointerException
- if the argument is null
Copyright © 1996-2014 Geotools. All Rights Reserved.