Package org.n52.shetland.ogc.filter
Enum FilterConstants.GeometryOperand
- java.lang.Object
-
- java.lang.Enum<FilterConstants.GeometryOperand>
-
- org.n52.shetland.ogc.filter.FilterConstants.GeometryOperand
-
- All Implemented Interfaces:
Serializable,Comparable<FilterConstants.GeometryOperand>
- Enclosing interface:
- FilterConstants
public static enum FilterConstants.GeometryOperand extends Enum<FilterConstants.GeometryOperand>
Enumeration for geometry types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ArcArcByBulgeArcByCenterPointBezierCircleCircleByCenterPointClothoidCubicSplineEnvelopeGeodesicLineStringOffsetCurvePointPolygonPolyhedralSurfaceSolidTinTriangleTriangulatedSurface
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterConstants.GeometryOperandvalueOf(String name)Returns the enum constant of this type with the specified name.static FilterConstants.GeometryOperand[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Envelope
public static final FilterConstants.GeometryOperand Envelope
-
Point
public static final FilterConstants.GeometryOperand Point
-
LineString
public static final FilterConstants.GeometryOperand LineString
-
Polygon
public static final FilterConstants.GeometryOperand Polygon
-
ArcByCenterPoint
public static final FilterConstants.GeometryOperand ArcByCenterPoint
-
CircleByCenterPoint
public static final FilterConstants.GeometryOperand CircleByCenterPoint
-
Arc
public static final FilterConstants.GeometryOperand Arc
-
Circle
public static final FilterConstants.GeometryOperand Circle
-
ArcByBulge
public static final FilterConstants.GeometryOperand ArcByBulge
-
Bezier
public static final FilterConstants.GeometryOperand Bezier
-
Clothoid
public static final FilterConstants.GeometryOperand Clothoid
-
CubicSpline
public static final FilterConstants.GeometryOperand CubicSpline
-
Geodesic
public static final FilterConstants.GeometryOperand Geodesic
-
OffsetCurve
public static final FilterConstants.GeometryOperand OffsetCurve
-
Triangle
public static final FilterConstants.GeometryOperand Triangle
-
PolyhedralSurface
public static final FilterConstants.GeometryOperand PolyhedralSurface
-
TriangulatedSurface
public static final FilterConstants.GeometryOperand TriangulatedSurface
-
Tin
public static final FilterConstants.GeometryOperand Tin
-
Solid
public static final FilterConstants.GeometryOperand Solid
-
-
Method Detail
-
values
public static FilterConstants.GeometryOperand[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FilterConstants.GeometryOperand c : FilterConstants.GeometryOperand.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterConstants.GeometryOperand valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-