Package com.fa993.types.supertype
Enum Either.Selector
- java.lang.Object
-
- java.lang.Enum<Either.Selector>
-
- com.fa993.types.supertype.Either.Selector
-
- All Implemented Interfaces:
Serializable
,Comparable<Either.Selector>
- Enclosing class:
- Either
public static enum Either.Selector extends Enum<Either.Selector>
Enum representing the possible choices: First, Second, or Third.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isFirst()
Checks if the current selection isFirst
.boolean
isSecond()
Checks if the current selection isSecond
.boolean
isThird()
Checks if the current selection isThird
.static Either.Selector
valueOf(String name)
Returns the enum constant of this type with the specified name.static Either.Selector[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
First
public static final Either.Selector First
Represents the first choice.
-
Second
public static final Either.Selector Second
Represents the second choice.
-
Third
public static final Either.Selector Third
Represents the third choice.
-
-
Method Detail
-
values
public static Either.Selector[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Either.Selector c : Either.Selector.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Either.Selector valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
isFirst
public boolean isFirst()
Checks if the current selection isFirst
.- Returns:
true
if the selection isFirst
,false
otherwise
-
isSecond
public boolean isSecond()
Checks if the current selection isSecond
.- Returns:
true
if the selection isSecond
,false
otherwise
-
isThird
public boolean isThird()
Checks if the current selection isThird
.- Returns:
true
if the selection isThird
,false
otherwise
-
-