Booleans are very simple things. Explicit validation is typically only needed for use in other validation or to gate it with conditions.
public boolean mySimpleBoolean = true; // this will work fine.public ValidatedBoolean myValidatedBoolean = new ValidatedBoolean(); // typically not needed; ValidatedBoolean might be used if you are making something like a ValidatedMap<String, Boolean>.
Conditions
ValidatedBoolean
can be used as an input condition for a ValidatedCondition
. See Conditional Settings to learn more.
Heads up!
See the documentation page here 🗗