Uses of Enum
org.apache.sis.storage.geotiff.Type

Packages that use Type
Package
Description
Maps GeoTIFF tags to ISO metadata and read raster data as coverages.
  • Uses of Type in org.apache.sis.storage.geotiff

    Fields in org.apache.sis.storage.geotiff declared as Type
    Modifier and Type
    Field
    Description
    private static final Type[]
    All types known to this enumeration in an array where the index is the GeoTIFF numerical code.
    (package private) final Type
    DeferredEntry.type
    The GeoTIFF type of the value to read.
    Methods in org.apache.sis.storage.geotiff that return Type
    Modifier and Type
    Method
    Description
    (package private) static Type
    Type.valueOf(int code)
    Returns the type for the given GeoTIFF code, or null if the given type is unknown.
    static Type
    Type.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static Type[]
    Type.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.apache.sis.storage.geotiff with parameters of type Type
    Modifier and Type
    Method
    Description
    (package private) Object
    ImageFileDirectory.addEntry(short tag, Type type, long count)
    Adds the value read from the current position in the given stream for the entry identified by the given GeoTIFF tag.
    Constructors in org.apache.sis.storage.geotiff with parameters of type Type
    Modifier
    Constructor
    Description
    (package private)
    DeferredEntry(ImageFileDirectory owner, short tag, Type type, long count, long offset)
    Creates a new deferred entry.
    (package private)
    XMLMetadata(Reader reader, Type type, long count, short tag)
    Creates new metadata which will decode the given vector of bytes.