public static enum CustomizationClass.AutoMergeOverrideValue extends java.lang.Enum<CustomizationClass.AutoMergeOverrideValue>
| Enum Constant and Description |
|---|
NO_OVERRIDE
Value should always be calculated.
|
NULL
Null should be returned.
|
PINNED_VALUE
USB Pinned value should be returned.
|
| Modifier and Type | Method and Description |
|---|---|
static CustomizationClass.AutoMergeOverrideValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomizationClass.AutoMergeOverrideValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomizationClass.AutoMergeOverrideValue NO_OVERRIDE
public static final CustomizationClass.AutoMergeOverrideValue NULL
NOTE that if Null is returned for a Tip Customization
Layer, then calls to getMutableMO will fail with
NoTipCustomizationLayerException
public static final CustomizationClass.AutoMergeOverrideValue PINNED_VALUE
NOTE that if no pinned value is found,
then calls will fail with
MDSRuntimeException
public static CustomizationClass.AutoMergeOverrideValue[] values()
for (CustomizationClass.AutoMergeOverrideValue c : CustomizationClass.AutoMergeOverrideValue.values()) System.out.println(c);
public static CustomizationClass.AutoMergeOverrideValue 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