| Modifier and Type | Method and Description |
|---|---|
Condition |
Condition.and(boolean clause)
Logically AND combine the current
Condition with the clause. |
default Condition |
Condition.andNot(boolean clause)
Logically AND combine the current
Condition with boolean opposite of the clause. |
Condition |
Condition.or(boolean clause)
Logically OR combine the current
Condition with the clause. |
default Condition |
Condition.orNot(boolean clause)
Logically OR combine the current
Condition with the boolean opposite of the clause. |
default Condition |
Condition.otherwise(boolean clause)
Create a new
Condition for the clause as a continuation to an existing Condition. |
Condition |
Condition.then(Runnable response)
Perform this response if the
Condition is true. |
static Condition |
Condition.where(boolean clause)
Create a new
Condition for the clause. |
static Condition |
Condition.whereNot(boolean clause)
Create a new
Condition for the boolean opposite of the clause. |
Copyright © 2015–2017. All rights reserved.