Enum Class Trilean
- All Implemented Interfaces:
Serializable,Comparable<Trilean>,Constable
Enum to represent 3 values, TRUE, FALSE and UNKNOWN. Can be used where
boolean is not enough to hold the information.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TrileangetTrilean(boolean isTrue) Converts boolean to Trilean.static TrileangetTrilean(String str) Converts String to Trilean.booleanConverts the Trilean enum to boolean.static TrileanReturns the enum constant of this class with the specified name.static Trilean[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FALSE
-
TRUE
-
UNKNOWN
-
-
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
-
getTrilean
Converts boolean to Trilean.- Parameters:
isTrue- the boolean to convert.- Returns:
- the corresponding Trilean for the passed boolean isTrue.
-
getTrilean
Converts String to Trilean.- Parameters:
str- the string to convert.- Returns:
- the corresponding Trilean for the passed string str.
-
toBoolean
Converts the Trilean enum to boolean.- Returns:
- the corresponding boolean.
- Throws:
TrileanConversionException- when tried to convert Trilean.UNKNOWN.
-