public enum BooleanType extends Enum<BooleanType>
| Enum Constant and Description |
|---|
ONE_ZERO |
PLUS_MINUS |
TRUE_FALSE |
YES_NO |
| Modifier and Type | Method and Description |
|---|---|
static BooleanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BooleanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanType TRUE_FALSE
public static final BooleanType YES_NO
public static final BooleanType ONE_ZERO
public static final BooleanType PLUS_MINUS
public static BooleanType[] values()
for (BooleanType c : BooleanType.values()) System.out.println(c);
public static BooleanType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 CERN European Organization for Nuclear Research. All rights reserved.