Interface PsyLogical<T extends PsyLogical>

    • Method Detail

      • psyNot

        T psyNot()
        Returns a result of logical negation of this object.
        Returns:
        a result.
      • psyOr

        T psyOr​(T oLogical)
        Returns a result of logical disjunction of this object and given object.
        Parameters:
        oLogical - given object.
        Returns:
        a result.
      • psyAnd

        T psyAnd​(T oLogical)
        Returns a result of logical conjunction of this object and given object.
        Parameters:
        oLogical - given object.
        Returns:
        a result.
      • psyXor

        T psyXor​(T oLogical)
        Returns a result of logical exclusive disjunction of this object and given object.
        Parameters:
        oLogical - given object.
        Returns:
        a result.