Package org.geotools.process.raster
Enum MarchingSquaresVectorizer.ImageLoadingType
- Object
-
- Enum<MarchingSquaresVectorizer.ImageLoadingType>
-
- ImageLoadingType
-
- All Implemented Interfaces:
Serializable
,Comparable<MarchingSquaresVectorizer.ImageLoadingType>
- Enclosing class:
- MarchingSquaresVectorizer
public static enum MarchingSquaresVectorizer.ImageLoadingType extends Enum<MarchingSquaresVectorizer.ImageLoadingType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MarchingSquaresVectorizer.ImageLoadingType
getDefault()
static MarchingSquaresVectorizer.ImageLoadingType
valueOf(String name)
Returns the enum constant of this type with the specified name.static MarchingSquaresVectorizer.ImageLoadingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMMEDIATE
public static final MarchingSquaresVectorizer.ImageLoadingType IMMEDIATE
-
DEFERRED
public static final MarchingSquaresVectorizer.ImageLoadingType DEFERRED
-
-
Method Detail
-
values
public static MarchingSquaresVectorizer.ImageLoadingType[] 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 (MarchingSquaresVectorizer.ImageLoadingType c : MarchingSquaresVectorizer.ImageLoadingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MarchingSquaresVectorizer.ImageLoadingType 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
-
getDefault
public static MarchingSquaresVectorizer.ImageLoadingType getDefault()
-
-