Class CollectExpression


  • public class CollectExpression
    extends Expression
    A collect expression collects values.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected Expression expression
      The collect expression.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean containsVariable​(Variable var)
      Test if a variable is contained in the expression.
      boolean equals​(java.lang.Object o)
      Test if this expression is equal to some object.
      Expression getExpression()
      Get the expression.
      int hashCode()
      Get the hash code of this expression.
      java.lang.String toString()
      Get a string representation of this expression.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • expression

        protected Expression expression
        The collect expression.
    • Constructor Detail

      • CollectExpression

        public CollectExpression​(Expression expression)
        Create a new unary operation.
    • Method Detail

      • containsVariable

        public boolean containsVariable​(Variable var)
        Test if a variable is contained in the expression.
        Specified by:
        containsVariable in class Expression
        Parameters:
        var - The variable.
        Returns:
        True, when the variable is contained.
      • getExpression

        public Expression getExpression()
        Get the expression.
      • toString

        public java.lang.String toString()
        Get a string representation of this expression.
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Test if this expression is equal to some object.
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Get the hash code of this expression.
        Overrides:
        hashCode in class java.lang.Object