public static enum CustomerMode.State extends java.lang.Enum<CustomerMode.State>
Enum Constant and Description |
---|
DISABLED
Customer mode is not enabled on the primary display.
|
ENABLED
Customer mode is enabled on the primary display.
|
Modifier and Type | Method and Description |
---|---|
static CustomerMode.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomerMode.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomerMode.State ENABLED
public static final CustomerMode.State DISABLED
public static CustomerMode.State[] values()
for (CustomerMode.State c : CustomerMode.State.values()) System.out.println(c);
public static CustomerMode.State 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 nullCopyright © 2016 Clover Network, Inc. All Rights Reserved.