public static enum SegmentedControl.SelectionType extends java.lang.Enum<SegmentedControl.SelectionType>
| Enum Constant and Description |
|---|
MULTIPLE
Multiple segments can be selected at any one time.
|
SINGLE
Only one segment can be selected at any one time.
|
| Modifier and Type | Method and Description |
|---|---|
static SegmentedControl.SelectionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SegmentedControl.SelectionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final SegmentedControl.SelectionType SINGLE
public static final SegmentedControl.SelectionType MULTIPLE
public static SegmentedControl.SelectionType[] values()
for (SegmentedControl.SelectionType c : SegmentedControl.SelectionType.values())
System.out.println(c);
public static SegmentedControl.SelectionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null