Enum Class TriState
- All Implemented Interfaces:
Serializable, Comparable<TriState>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TriStatebyBoolean(boolean value) Gets a state from aboolean.static TriStateGets a state from aBoolean.@Nullable BooleanConverts this tri-state back into aBoolean.booleantoBooleanOrElse(boolean other) Converts this tri-state back into aboolean.booleantoBooleanOrElseGet(BooleanSupplier supplier) Converts this tri-state back into aboolean.static TriStateReturns the enum constant of this class with the specified name.static TriState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_SET
-
FALSE
-
TRUE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
toBoolean
-
toBooleanOrElse
public boolean toBooleanOrElse(boolean other) Converts this tri-state back into aboolean.As the
NOT_SETstate cannot be represented by the boolean type, this method maps theNOT_SETstate to other passed boolean value. This method may hence also be viewed as an equivalent toOptional.orElse(Object). -
toBooleanOrElseGet
Converts this tri-state back into aboolean.As the
NOT_SETstate cannot be represented by the boolean type, this method maps theNOT_SETstate to the suppliers result. This method may hence also be viewed as an equivalent toOptional.orElseGet(java.util.function.Supplier). -
byBoolean
Gets a state from aboolean.- Parameters:
value- the boolean- Returns:
- a tri-state
- Since:
- 4.8.0
-
byBoolean
-