public enum TriBool extends Enum<TriBool>
| Modifier and Type | Method and Description |
|---|---|
Boolean |
toBoolean() |
static TriBool |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriBool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriBool UNDEF
public static final TriBool TRUE
public static final TriBool FALSE
public static TriBool[] values()
for (TriBool c : TriBool.values()) System.out.println(c);
public static TriBool 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 nullpublic Boolean toBoolean()
Copyright © 2018. All rights reserved.