Class Condition

    • Constructor Detail

      • Condition

        public Condition()
    • Method Detail

      • negate

        public final NegationCondition negate()
        Returns a new condition based on the negation of the current condition.
      • and

        public AndCondition and​(Condition that)
        Returns a new condition based on the conjunction of the current condition and the given condition.
        Parameters:
        that - given condition.
      • or

        public OrCondition or​(Condition that)
        Returns a new condition based on the disjunction of the current condition and the given condition.
        Parameters:
        that - given condition.