public static enum LLUIPainter.MicroUIImageFormat extends Enum<LLUIPainter.MicroUIImageFormat>
Enum Constant and Description |
---|
MICROUI_IMAGE_FORMAT_A1
Defines an image whose pixel format is Alpha1.
|
MICROUI_IMAGE_FORMAT_A2
Defines an image whose pixel format is Alpha2.
|
MICROUI_IMAGE_FORMAT_A4
Defines an image whose pixel format is Alpha4.
|
MICROUI_IMAGE_FORMAT_A8
Defines an image whose pixel format is Alpha8.
|
MICROUI_IMAGE_FORMAT_AC11
Defines an image whose pixel format is Alpha1-Color1.
|
MICROUI_IMAGE_FORMAT_AC22
Defines an image whose pixel format is Alpha2-Color2.
|
MICROUI_IMAGE_FORMAT_AC44
Defines an image whose pixel format is Alpha4-Color4.
|
MICROUI_IMAGE_FORMAT_ARGB1555
Defines an image whose pixel format is ARGB1555.
|
MICROUI_IMAGE_FORMAT_ARGB4444
Defines an image whose pixel format is ARGB4444.
|
MICROUI_IMAGE_FORMAT_ARGB8888
Defines an image whose pixel format is ARGB8888.
|
MICROUI_IMAGE_FORMAT_C1
Defines an image whose pixel format is Color1.
|
MICROUI_IMAGE_FORMAT_C2
Defines an image whose pixel format is Color2.
|
MICROUI_IMAGE_FORMAT_C4
Defines an image whose pixel format is Color4.
|
MICROUI_IMAGE_FORMAT_INTERNAL
Defines an image whose pixel format is MicroUI implementation dependent.
|
MICROUI_IMAGE_FORMAT_LARGB8888
Defines an image whose pixel format is a LUT entry on 8 bits and target an ARGB8888 color.
|
MICROUI_IMAGE_FORMAT_LCD
Defines an image with the same pixel representation and layout than the LCD memory.
|
MICROUI_IMAGE_FORMAT_LRGB888
Defines an image whose pixel format is a LUT entry on 8 bits and target a RGB888 color.
|
MICROUI_IMAGE_FORMAT_RGB565
Defines an image whose pixel format is RGB565.
|
MICROUI_IMAGE_FORMAT_RGB888
Defines an image whose pixel format is RGB888.
|
Modifier and Type | Method and Description |
---|---|
static LLUIPainter.MicroUIImageFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LLUIPainter.MicroUIImageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_A1
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_A2
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_A4
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_A8
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_AC11
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_AC22
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_AC44
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_ARGB1555
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_ARGB4444
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_ARGB8888
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_C1
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_C2
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_C4
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_INTERNAL
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_LARGB8888
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_LCD
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_LRGB888
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_RGB565
public static final LLUIPainter.MicroUIImageFormat MICROUI_IMAGE_FORMAT_RGB888
public static LLUIPainter.MicroUIImageFormat 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 LLUIPainter.MicroUIImageFormat[] values()
for (LLUIPainter.MicroUIImageFormat c : LLUIPainter.MicroUIImageFormat.values()) System.out.println(c);