public enum WlOutputSubpixel extends Enum<WlOutputSubpixel>
This enumeration describes how the physical pixels on an output are laid out.
| Enum Constant and Description |
|---|
HORIZONTAL_BGR
horizontal BGR
|
HORIZONTAL_RGB
horizontal RGB
|
NONE
no geometry
|
UNKNOWN
unknown geometry
|
VERTICAL_BGR
vertical BGR
|
VERTICAL_RGB
vertical RGB
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static WlOutputSubpixel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WlOutputSubpixel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WlOutputSubpixel UNKNOWN
public static final WlOutputSubpixel NONE
public static final WlOutputSubpixel HORIZONTAL_RGB
public static final WlOutputSubpixel HORIZONTAL_BGR
public static final WlOutputSubpixel VERTICAL_RGB
public static final WlOutputSubpixel VERTICAL_BGR
public static WlOutputSubpixel[] values()
for (WlOutputSubpixel c : WlOutputSubpixel.values()) System.out.println(c);
public static WlOutputSubpixel 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.