public enum BooleanToken extends java.lang.Enum<BooleanToken>
This enum provides a mapping between string representations and their corresponding boolean values.
Enum Constant and Description |
---|
FALSE
Token "false" representing
false . |
NO
Token "no" representing
false . |
ONE
Token "1" representing
true . |
TRUE
Token "true" representing
true . |
YES
Token "yes" representing
true . |
ZERO
Token "0" representing
false . |
Modifier and Type | Method and Description |
---|---|
static BooleanToken |
fromToken(java.lang.String token)
Returns the
BooleanToken associated with the given token,
or null if no matching token is found. |
java.lang.String |
getToken()
Returns the string representation of the token.
|
boolean |
getValue()
Returns the boolean value associated with the token.
|
static BooleanToken |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BooleanToken[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanToken TRUE
true
.public static final BooleanToken YES
true
.public static final BooleanToken ONE
true
.public static final BooleanToken FALSE
false
.public static final BooleanToken NO
false
.public static final BooleanToken ZERO
false
.public static BooleanToken[] values()
for (BooleanToken c : BooleanToken.values()) System.out.println(c);
public static BooleanToken valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getToken()
public boolean getValue()
public static BooleanToken fromToken(java.lang.String token)
BooleanToken
associated with the given token,
or null
if no matching token is found.
The comparison is case-insensitive.token
- the token to look upBooleanToken
, or null
if not foundCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.