public enum VideoPixelFormat extends Enum<VideoPixelFormat>
| Modifier and Type | Method and Description |
|---|---|
static VideoPixelFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoPixelFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoPixelFormat NV21
public static final VideoPixelFormat RGBA_8888
public static VideoPixelFormat[] values()
for (VideoPixelFormat c : VideoPixelFormat.values()) System.out.println(c);
public static VideoPixelFormat 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 null4.0.1