public enum VideoDisplayMode extends java.lang.Enum<VideoDisplayMode>
| Modifier and Type | Method and Description |
|---|---|
int |
getDisplayMode() |
static VideoDisplayMode |
valueOf(int mode) |
static VideoDisplayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoDisplayMode SCALE
public static final VideoDisplayMode FILL
public static VideoDisplayMode[] values()
for (VideoDisplayMode c : VideoDisplayMode.values()) System.out.println(c);
public static VideoDisplayMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getDisplayMode()
public static VideoDisplayMode valueOf(int mode)