public enum SurfacePatchType extends Enum<SurfacePatchType>
Enum Constant and Description |
---|
POLYGON
gml:PolygonPatch
|
RECTANGLE
gml:Rectangle
|
TRIANGLE
gml:Triangle
|
Modifier and Type | Method and Description |
---|---|
abstract org.geotoolkit.gml.xml.v321.AbstractRingType |
getExteriorBoundary(org.geotoolkit.gml.xml.v321.AbstractSurfacePatchType patch)
Returns the exterior boundary of a surface patch (an element that
substitutes for gml:AbstractSurfacePatch).
|
abstract Set<org.geotoolkit.gml.xml.v321.AbstractRingType> |
getInteriorBoundaries(org.geotoolkit.gml.xml.v321.AbstractSurfacePatchType patch)
Returns the set of interior boundaries for a surface patch (an element
that substitutes for gml:AbstractSurfacePatch).
|
static SurfacePatchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SurfacePatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SurfacePatchType POLYGON
public static final SurfacePatchType RECTANGLE
public static final SurfacePatchType TRIANGLE
public static SurfacePatchType[] values()
for (SurfacePatchType c : SurfacePatchType.values()) System.out.println(c);
public static SurfacePatchType 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 nullpublic abstract org.geotoolkit.gml.xml.v321.AbstractRingType getExteriorBoundary(org.geotoolkit.gml.xml.v321.AbstractSurfacePatchType patch)
patch
- A GML surface patch.public abstract Set<org.geotoolkit.gml.xml.v321.AbstractRingType> getInteriorBoundaries(org.geotoolkit.gml.xml.v321.AbstractSurfacePatchType patch)
patch
- A GML surface patch.Copyright © 2014. All rights reserved.