public enum Feature extends Enum<Feature>
| Enum Constant and Description |
|---|
NO_SWITCH_WITHOUT_FRAME_CHAIN |
POSITION_PROVIDER_EXTRA_SCROLL |
UNUSED |
USE_PREDEFINED_DEVICE_INFO |
| Modifier and Type | Method and Description |
|---|---|
static Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Feature UNUSED
public static final Feature NO_SWITCH_WITHOUT_FRAME_CHAIN
public static final Feature USE_PREDEFINED_DEVICE_INFO
public static final Feature POSITION_PROVIDER_EXTRA_SCROLL
public static Feature[] values()
for (Feature c : Feature.values()) System.out.println(c);
public static Feature 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 © 2023. All rights reserved.