public static enum Tristate.Tristates extends Enum<Tristate.Tristates>
Enum Constant and Description |
---|
OFF
Not checked.
|
ON
Checked.
|
SOME
Half checked.
|
Modifier and Type | Method and Description |
---|---|
static Tristate.Tristates |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tristate.Tristates[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tristate.Tristates OFF
public static final Tristate.Tristates SOME
public static final Tristate.Tristates ON
public static Tristate.Tristates[] values()
for (Tristate.Tristates c : Tristate.Tristates.values()) System.out.println(c);
public static Tristate.Tristates 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 © 2021 Hyland Software Germany GmbH. All rights reserved.