| Modifier and Type | Method and Description | 
|---|---|
| static Mono<Boolean> | and(Mono<Boolean> value1,
   Mono<Boolean> value2)Two booleans, wrapped in  Mono, combined with the AND operator. | 
| static Mono<Boolean> | nand(Mono<Boolean> value1,
    Mono<Boolean> value2)Two booleans, wrapped in  Mono, combined with the NOT-AND (NAND) operator. | 
| static Mono<Boolean> | nor(Mono<Boolean> value1,
   Mono<Boolean> value2)Two booleans, wrapped in  Mono, combined with the NOT-OR (NOR) operator. | 
| static Mono<Boolean> | not(Mono<Boolean> value)A boolean, wrapped in a  Mono, inverted by the NOT operator. | 
| static Mono<Boolean> | or(Mono<Boolean> value1,
  Mono<Boolean> value2)Two booleans, wrapped in  Mono, combined with the OR operator. | 
| static Mono<Boolean> | xor(Mono<Boolean> value1,
   Mono<Boolean> value2)Two booleans, wrapped in  Mono, combined with the exclusive-OR operator. | 
public static Mono<Boolean> not(Mono<Boolean> value)
Mono, inverted by the NOT operator.value - booleanMonopublic static Mono<Boolean> and(Mono<Boolean> value1, Mono<Boolean> value2)
Mono, combined with the AND operator.value1 - first booleanvalue2 - second booleanMonopublic static Mono<Boolean> xor(Mono<Boolean> value1, Mono<Boolean> value2)
Mono, combined with the exclusive-OR operator.value1 - first booleanvalue2 - second booleanMonopublic static Mono<Boolean> or(Mono<Boolean> value1, Mono<Boolean> value2)
Mono, combined with the OR operator.value1 - first booleanvalue2 - second booleanMonopublic static Mono<Boolean> nand(Mono<Boolean> value1, Mono<Boolean> value2)
Mono, combined with the NOT-AND (NAND) operator.value1 - first booleanvalue2 - second booleanMono