Class BooleanMonoExtensionsKt

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final static Mono<Boolean> not(Mono<Boolean> $self) Extension to logically revert a Boolean.
      final static Mono<Boolean> logicalAnd(Mono<Boolean> $self, Mono<Boolean> rightHand) Extension to logically combine two Boolean with the AND operator.
      final static Mono<Boolean> logicalNAnd(Mono<Boolean> $self, Mono<Boolean> rightHand) Extension to logically combine two Boolean with the Not-AND (NAND) operator.
      final static Mono<Boolean> logicalOr(Mono<Boolean> $self, Mono<Boolean> rightHand) Extension to logically combine two Boolean with the OR operator.
      final static Mono<Boolean> logicalNOr(Mono<Boolean> $self, Mono<Boolean> rightHand) Extension to logically combine two Boolean with the Not-OR (NOR) operator.
      final static Mono<Boolean> logicalXOr(Mono<Boolean> $self, Mono<Boolean> rightHand) Extension to logically combine two Boolean with the exclusive-OR (XOR) operator.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • not

         final static Mono<Boolean> not(Mono<Boolean> $self)

        Extension to logically revert a Boolean. It can also be applied as a ! operator.

        Since:

        3.2.0

      • logicalAnd

         final static Mono<Boolean> logicalAnd(Mono<Boolean> $self, Mono<Boolean> rightHand)

        Extension to logically combine two Boolean with the AND operator.

        Since:

        3.2.0

      • logicalNAnd

         final static Mono<Boolean> logicalNAnd(Mono<Boolean> $self, Mono<Boolean> rightHand)

        Extension to logically combine two Boolean with the Not-AND (NAND) operator.

        Since:

        3.2.0

      • logicalOr

         final static Mono<Boolean> logicalOr(Mono<Boolean> $self, Mono<Boolean> rightHand)

        Extension to logically combine two Boolean with the OR operator.

        Since:

        3.2.0

      • logicalNOr

         final static Mono<Boolean> logicalNOr(Mono<Boolean> $self, Mono<Boolean> rightHand)

        Extension to logically combine two Boolean with the Not-OR (NOR) operator.

        Since:

        3.2.0

      • logicalXOr

         final static Mono<Boolean> logicalXOr(Mono<Boolean> $self, Mono<Boolean> rightHand)

        Extension to logically combine two Boolean with the exclusive-OR (XOR) operator.

        Since:

        3.2.0