Class OperatorFactory

  • Direct Known Subclasses:
    OperatorFactoryLocal

    public abstract class OperatorFactory
    extends java.lang.Object
    An abstract class that represent the basic OperatorFactory interface.
    • Constructor Detail

      • OperatorFactory

        public OperatorFactory()
    • 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.