public static enum Bitmap.Config extends Enum<Bitmap.Config>
| Enum Constant and Description |
|---|
ALPHA_8 |
ARGB_4444 |
ARGB_8888 |
RGB_565 |
| Modifier and Type | Method and Description |
|---|---|
static Bitmap.Config |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bitmap.Config[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bitmap.Config ALPHA_8
public static final Bitmap.Config ARGB_4444
public static final Bitmap.Config ARGB_8888
public static final Bitmap.Config RGB_565
public static Bitmap.Config[] values()
for (Bitmap.Config c : Bitmap.Config.values()) System.out.println(c);
public static Bitmap.Config 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 © 2008-2013. All Rights Reserved.