Package com.esri.core.geometry
Class OperatorFactory
- java.lang.Object
-
- com.esri.core.geometry.OperatorFactory
-
- Direct Known Subclasses:
OperatorFactoryLocal
public abstract class OperatorFactory extends java.lang.Object
An abstract class that represent the basic OperatorFactory interface.
-
-
Constructor Summary
Constructors Constructor Description OperatorFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Operator
getOperator(Operator.Type type)
Returns an operator of the given type.abstract boolean
isOperatorSupported(Operator.Type type)
Returns True if the given operator exists.
-
-
-
Method Detail
-
isOperatorSupported
public abstract boolean isOperatorSupported(Operator.Type type)
Returns True if the given operator exists. The type is one of the Operator::Type values or a user defined value.
-
getOperator
public abstract Operator getOperator(Operator.Type type)
Returns an operator of the given type. Throws an exception if the operator is not supported.
-
-