public enum ExcessGranulePolicy extends Enum<ExcessGranulePolicy>
Enum Constant and Description |
---|
NONE
No excess granule removal is performed.
|
ROI
Excess granule removal based on image ROI, performed in raster space
|
Modifier and Type | Method and Description |
---|---|
static ExcessGranulePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcessGranulePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcessGranulePolicy NONE
public static final ExcessGranulePolicy ROI
public static ExcessGranulePolicy[] values()
for (ExcessGranulePolicy c : ExcessGranulePolicy.values()) System.out.println(c);
public static ExcessGranulePolicy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 1996–2019 Geotools. All rights reserved.