public enum ToggleState extends Enum<ToggleState>
Enum Constant and Description |
---|
INDETERMINATE
The Silverlight object is in an indeterminate state.
|
OFF
The Silverlight object is not selected, checked, marked or otherwise activated.
|
ON
The Silverlight object is selected, checked, marked or otherwise activated.
|
Modifier and Type | Method and Description |
---|---|
static ToggleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToggleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToggleState OFF
public static final ToggleState ON
public static final ToggleState INDETERMINATE
public static ToggleState[] values()
for (ToggleState c : ToggleState.values()) System.out.println(c);
public static ToggleState 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 2009-2012 Micro Focus. All Rights Reserved.