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 intLYR_Astatic intLYR_Bstatic intLYR_RESULT
-
Constructor Summary
Constructors Constructor Description LayerList()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(LayerList lyrList)Layeradd(Layer lyr, boolean atTop)voidaddBottom(Layer lyr)voidaddTop(Layer lyr)booleancontains(Layer lyr)Layercopy(Layer focusLayer)static LayerListcreate(LayerList l1, LayerList l2, LayerList l3)static LayerListcreateFixed()Layerfind(String name)GeometrygetComponent(Coordinate pt, double tolerance)Geometry[]getComponents(Geometry aoi, boolean isSegments)LayergetLayer(int i)booleanisBottom(Layer lyr)booleanisTop(Layer lyr)voidmoveDown(Layer lyr)voidmoveUp(Layer lyr)voidremove(Layer lyr)intsize()
-
-
-
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)
-
-