schmitzm.geotools.io
Enum GeoImportUtil.ARCASCII_IMPORT_TYPE

java.lang.Object
  extended by java.lang.Enum<GeoImportUtil.ARCASCII_IMPORT_TYPE>
      extended by schmitzm.geotools.io.GeoImportUtil.ARCASCII_IMPORT_TYPE
All Implemented Interfaces:
Serializable, Comparable<GeoImportUtil.ARCASCII_IMPORT_TYPE>
Enclosing class:
GeoImportUtil

public static enum GeoImportUtil.ARCASCII_IMPORT_TYPE
extends Enum<GeoImportUtil.ARCASCII_IMPORT_TYPE>

This type specifies how this class can proceed the import of ASCII rasters.

See Also:
GeoImportUtil.readGridFromArcInfoASCII(Object, CoordinateReferenceSystem), GeoImportUtil.readGridRasterFromGeoTiff(File, CoordinateReferenceSystem)

Enum Constant Summary
USE_ARCGRIDRASTER
          Use the old ArcGridRaster.
USE_ARCGRIDREADER
          Use the ArcGridReader from "standard" GT.
 
Method Summary
static GeoImportUtil.ARCASCII_IMPORT_TYPE valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GeoImportUtil.ARCASCII_IMPORT_TYPE[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

USE_ARCGRIDRASTER

public static final GeoImportUtil.ARCASCII_IMPORT_TYPE USE_ARCGRIDRASTER
Use the old ArcGridRaster. This works fine (colorization and no data transparency), but ArcGridRaster is deprecated and no longer supported since gt2-2.3.0-M0.


USE_ARCGRIDREADER

public static final GeoImportUtil.ARCASCII_IMPORT_TYPE USE_ARCGRIDREADER
Use the ArcGridReader from "standard" GT.
Note:There may be problems with colorization and no data transparency using this import type!

Method Detail

values

public static GeoImportUtil.ARCASCII_IMPORT_TYPE[] 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 (GeoImportUtil.ARCASCII_IMPORT_TYPE c : GeoImportUtil.ARCASCII_IMPORT_TYPE.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GeoImportUtil.ARCASCII_IMPORT_TYPE 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