Serializable
, Comparable<TristateState>
public enum TristateState extends Enum<TristateState>
Enum Constant | Description |
---|---|
DESELECTED |
|
INDETERMINATE |
|
SELECTED |
Modifier and Type | Method | Description |
---|---|---|
abstract TristateState |
next() |
|
static TristateState |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static TristateState[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TristateState SELECTED
public static final TristateState INDETERMINATE
public static final TristateState DESELECTED
public static TristateState[] values()
for (TristateState c : TristateState.values()) System.out.println(c);
public static TristateState 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 abstract TristateState next()
Copyright © 1998-2018 Apache Software Foundation. All Rights Reserved.