CheckState Class

CheckState Class

This Package | All Packages

Enum
  |
  +--CheckState
public class CheckState
extends Enum

Represents an enumeration used for various controls that can have checked or selected states (for example, a CheckBox or a CheckedListBox). Items can be completely checked, completely unchecked, or, in some cases, partially checked, in which case a shaded checkbox is typically displayed.

Fields
Name Description
CHECKED The item is checked.
MAX Topic under construction.
MIN Topic under construction.
PARTIAL The item is partially checked.
UNCHECKED The item is unchecked.

Fields

CheckState.CHECKED

Syntax
public static final int CHECKED;
Description
The item is checked.

CheckState.MAX

Syntax
public static final int MAX;
Description
Topic under construction.

CheckState.MIN

Syntax
public static final int MIN;
Description
Topic under construction.

CheckState.PARTIAL

Syntax
public static final int PARTIAL;
Description
The item is partially checked.

CheckState.UNCHECKED

Syntax
public static final int UNCHECKED;
Description
The item is unchecked.