public enum DropFramesStrategy extends java.lang.Enum<DropFramesStrategy>
| Enum Constant and Description |
|---|
DropAllowed
Any frame may be dropped.
|
DropNotAllowed
Do not drop any frames.
|
KeyFrameOrDropAllowed
Play last keyframe in drop range, if no such, drop all range.
|
KeyFrameOrDropNotAllowed
Play last keyframe in drop range, if no such play each frame one by one.
|
| Modifier and Type | Method and Description |
|---|---|
static DropFramesStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DropFramesStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropFramesStrategy DropAllowed
public static final DropFramesStrategy KeyFrameOrDropAllowed
public static final DropFramesStrategy KeyFrameOrDropNotAllowed
public static final DropFramesStrategy DropNotAllowed
public static DropFramesStrategy[] values()
for (DropFramesStrategy c : DropFramesStrategy.values()) System.out.println(c);
public static DropFramesStrategy 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