Package org.geotools.styling
Class OverlapBehaviorImpl
- Object
-
- ConstantExpression
-
- OverlapBehaviorImpl
-
- All Implemented Interfaces:
Cloneable
,Expression
,Literal
,OverlapBehavior
public class OverlapBehaviorImpl extends ConstantExpression implements OverlapBehavior
OverlapBehavior tells a system how to behave when multiple raster images in a layer overlap each other, for example with satellite-image scenes.<xsd:element name="OverlapBehavior"> <xsd:annotation> <xsd:documentation> "OverlapBehavior" tells a system how to behave when multiple raster images in a layer overlap each other, for example with satellite-image scenes. </xsd:documentation> </xsd:annotation> <xsd:complexType> <xsd:choice> <xsd:element ref="sld:LATEST_ON_TOP"/> <xsd:element ref="sld:EARLIEST_ON_TOP"/> <xsd:element ref="sld:AVERAGE"/> <xsd:element ref="sld:RANDOM"/> </xsd:choice> </xsd:complexType> </xsd:element>
- Author:
- Justin Deoliveira, The Open Planning Project
-
-
Field Summary
Fields Modifier and Type Field Description static OverlapBehaviorImpl
AVERAGE
static OverlapBehaviorImpl
EARLIEST_ON_TOP
static OverlapBehaviorImpl
LATEST_ON_TOP
static OverlapBehaviorImpl
RANDOM
-
Fields inherited from interface Expression
NIL
-
Fields inherited from interface OverlapBehavior
AVERAGE_RESCTRICTION, EARLIEST_ON_TOP_RESCTRICTION, LATEST_ON_TOP_RESCTRICTION, RANDOM_RESCTRICTION, UNSPECIFIED_RESCTRICTION
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(StyleVisitor visitor)
-
-
-
Field Detail
-
LATEST_ON_TOP
public static final OverlapBehaviorImpl LATEST_ON_TOP
-
EARLIEST_ON_TOP
public static final OverlapBehaviorImpl EARLIEST_ON_TOP
-
AVERAGE
public static final OverlapBehaviorImpl AVERAGE
-
RANDOM
public static final OverlapBehaviorImpl RANDOM
-
-
Method Detail
-
accept
public void accept(StyleVisitor visitor)
- Specified by:
accept
in interfaceOverlapBehavior
-
-