Enum Class PathType

Object
Enum<PathType>
PathType
All Implemented Interfaces:
Serializable, Comparable<PathType>, Constable

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
  • Enum Constant Details

    • RELATIVE

      public static final PathType RELATIVE
    • ABSOLUTE

      public static final PathType ABSOLUTE
    • URL

      public static final PathType URL
  • Method Details

    • values

      public static PathType[] 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

      public static PathType valueOf(String name)
      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 name
      NullPointerException - 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 return null in case something bad happens.