public static enum VideoFrame.AlphaStitchMode extends java.lang.Enum<VideoFrame.AlphaStitchMode>
Enum Constant and Description |
---|
ALPHA_NO_STITCH |
ALPHA_STITCH_BELOW |
ALPHA_STITCH_LEFT |
ALPHA_STITCH_RIGHT |
ALPHA_STITCH_UP |
Modifier and Type | Method and Description |
---|---|
int |
value() |
static VideoFrame.AlphaStitchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoFrame.AlphaStitchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoFrame.AlphaStitchMode ALPHA_NO_STITCH
public static final VideoFrame.AlphaStitchMode ALPHA_STITCH_UP
public static final VideoFrame.AlphaStitchMode ALPHA_STITCH_BELOW
public static final VideoFrame.AlphaStitchMode ALPHA_STITCH_LEFT
public static final VideoFrame.AlphaStitchMode ALPHA_STITCH_RIGHT
public static VideoFrame.AlphaStitchMode[] values()
for (VideoFrame.AlphaStitchMode c : VideoFrame.AlphaStitchMode.values()) System.out.println(c);
public static VideoFrame.AlphaStitchMode 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 value()