java.lang.Object
java.lang.Enum<Operator>
org.apache.jackrabbit.commons.query.qom.Operator
All Implemented Interfaces:
Serializable, Comparable<Operator>, java.lang.constant.Constable

public enum Operator extends Enum<Operator>
Enumeration of the JCR 2.0 query operators.
Since:
Apache Jackrabbit 2.0
  • Enum Constant Details

  • Method Details

    • values

      public static Operator[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Operator 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 name
      NullPointerException - if the argument is null
    • comparison

      public Comparison comparison(QueryObjectModelFactory factory, DynamicOperand left, StaticOperand right) throws RepositoryException
      Returns a comparison between the given operands using this operator.
      Parameters:
      factory - factory for creating the comparison
      left - operand on the left hand side
      right - operand on the right hand side
      Returns:
      comparison
      Throws:
      RepositoryException - if the comparison can not be created
    • formatXpath

      public String formatXpath(String a, String b)
      Formats an XPath constraint with this operator and the given operands. The operands are simply used as-is, without any quoting or escaping.
      Parameters:
      a - first operand
      b - second operand
      Returns:
      XPath constraint, a op b or jcr:like(a, b) for LIKE
    • formatSql

      public String formatSql(String a, String b)
      Formats an SQL constraint with this operator and the given operands. The operands are simply used as-is, without any quoting or escaping.
      Parameters:
      a - first operand
      b - second operand
      Returns:
      SQL constraint, a op b
    • toString

      public String toString()
      Returns the JCR 2.0 name of this query operator.
      Overrides:
      toString in class Enum<Operator>
      Returns:
      JCR name of this operator
      See Also:
    • getAllQueryOperators

      public static String[] getAllQueryOperators()
      Returns an array of the names of all the JCR 2.0 query operators.
      Returns:
      names of all query operators
    • getOperatorByName

      public static Operator getOperatorByName(String name) throws RepositoryException
      Returns the operator with the given JCR name.
      Parameters:
      name - JCR name of an operator
      Returns:
      operator with the given name
      Throws:
      RepositoryException - if the given name is unknown