public static enum MovieMaker.Method extends java.lang.Enum<MovieMaker.Method>
Enum Constant and Description |
---|
ANIMATED_GIF
Movies are generated as animated GIFs
|
AVCONV
Movies are generated using AVCONV
|
CUSTOM
Custom method to be defined by the user
|
FFMPEG
Movies are generated using FFMPEG
|
INTERNAL
Movies are generated using Java's MJPEG support
|
MENCODER
Movies are generated using MENCODER
|
Modifier and Type | Method and Description |
---|---|
static MovieMaker.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MovieMaker.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MovieMaker.Method INTERNAL
public static final MovieMaker.Method FFMPEG
public static final MovieMaker.Method MENCODER
public static final MovieMaker.Method ANIMATED_GIF
public static final MovieMaker.Method AVCONV
public static final MovieMaker.Method CUSTOM
public static MovieMaker.Method[] values()
for (MovieMaker.Method c : MovieMaker.Method.values()) System.out.println(c);
public static MovieMaker.Method 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 null