public enum DynamicMenuUpdatesMode extends Enum<DynamicMenuUpdatesMode>
| Enum Constant and Description |
|---|
FORCE_OFF
FORCE_OFF: Forces off compatibility mode.
|
FORCE_ON
FORCE_ON: This mode forces the menu manager to always dynamically update menu items for each menu
update.
|
ON_WITH_COMPAT_MODE
ON_WITH_COMPAT_MODE: This mode checks whether the phone is connected to a SYNC Gen 3 head unit, which has known
menu ordering issues.
|
| Modifier and Type | Method and Description |
|---|---|
static DynamicMenuUpdatesMode |
valueForString(String value) |
static DynamicMenuUpdatesMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicMenuUpdatesMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicMenuUpdatesMode FORCE_ON
public static final DynamicMenuUpdatesMode FORCE_OFF
public static final DynamicMenuUpdatesMode ON_WITH_COMPAT_MODE
public static DynamicMenuUpdatesMode[] values()
for (DynamicMenuUpdatesMode c : DynamicMenuUpdatesMode.values()) System.out.println(c);
public static DynamicMenuUpdatesMode 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 static DynamicMenuUpdatesMode valueForString(String value)