Class LayerList
- java.lang.Object
-
- org.locationtech.jtstest.testbuilder.model.LayerList
-
public class LayerList extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
LYR_A
static int
LYR_B
static int
LYR_RESULT
-
Constructor Summary
Constructors Constructor Description LayerList()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(LayerList lyrList)
Layer
add(Layer lyr, boolean atTop)
void
addBottom(Layer lyr)
void
addTop(Layer lyr)
boolean
contains(Layer lyr)
Layer
copy(Layer focusLayer)
static LayerList
create(LayerList l1, LayerList l2, LayerList l3)
static LayerList
createFixed()
Layer
find(String name)
Geometry
getComponent(Coordinate pt, double tolerance)
Geometry[]
getComponents(Geometry aoi, boolean isSegments)
Layer
getLayer(int i)
boolean
isBottom(Layer lyr)
boolean
isTop(Layer lyr)
void
moveDown(Layer lyr)
void
moveUp(Layer lyr)
void
remove(Layer lyr)
int
size()
-
-
-
Field Detail
-
LYR_A
public static final int LYR_A
- See Also:
- Constant Field Values
-
LYR_B
public static final int LYR_B
- See Also:
- Constant Field Values
-
LYR_RESULT
public static final int LYR_RESULT
- See Also:
- Constant Field Values
-
-
Method Detail
-
createFixed
public static LayerList createFixed()
-
size
public int size()
-
getLayer
public Layer getLayer(int i)
-
getComponent
public Geometry getComponent(Coordinate pt, double tolerance)
- Parameters:
pt
-tolerance
-- Returns:
- component found, or null
-
remove
public void remove(Layer lyr)
-
contains
public boolean contains(Layer lyr)
-
isTop
public boolean isTop(Layer lyr)
-
isBottom
public boolean isBottom(Layer lyr)
-
addTop
public void addTop(Layer lyr)
-
addBottom
public void addBottom(Layer lyr)
-
add
public void add(LayerList lyrList)
-
moveUp
public void moveUp(Layer lyr)
-
moveDown
public void moveDown(Layer lyr)
-
-