public enum WlOutputMode extends Enum<WlOutputMode>
These flags describe properties of an output mode. They are used in the flags bitfield of the mode event.
| Enum Constant and Description |
|---|
CURRENT
indicates this is the current mode
|
PREFERRED
indicates this is the preferred mode
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static WlOutputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WlOutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WlOutputMode CURRENT
public static final WlOutputMode PREFERRED
public static WlOutputMode[] values()
for (WlOutputMode c : WlOutputMode.values()) System.out.println(c);
public static WlOutputMode 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 © 2016. All rights reserved.