- All Implemented Interfaces:
Serializable
,Comparable<GridClippingMode>
,Constable
Specifies clipping behavior during computations of
GridExtent
.
The clipping mode controls which computation steps are constrained to
the extent of the base grid geometry.- Since:
- 1.1
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionClipping is applied on the Area Of Interest supplied by user, before expansion for margin and chunk size.No clipping is applied.All computation steps (including addition of a margin) are constrained to the base grid extent. -
Method Summary
Modifier and TypeMethodDescriptionstatic GridClippingMode
Returns the enum constant of this class with the specified name.static GridClippingMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NONE
No clipping is applied. -
STRICT
All computation steps (including addition of a margin) are constrained to the base grid extent. The final grid geometry computed byGridDerivation
will have an extent completely contained inside the extent of the base grid geometry. -
BORDER_EXPANSION
Clipping is applied on the Area Of Interest supplied by user, before expansion for margin and chunk size. After clipping, the addition of a margin and the rounding to chunk size may cause the final grid extent to expand outside the base grid extent.- See Also:
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-