public enum PositionMode extends Enum<PositionMode>
Enum Constant and Description |
---|
KEYFRAME
The custom tag will be inserted in the manifest at a certain keyframe id and segment cut.
|
SEGMENT
The custom tag will be inserted before the specified segment number.
|
TIME
The custom tag will be inserted before the segment that is closest to that time (in seconds).
|
Modifier and Type | Method and Description |
---|---|
static PositionMode |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static PositionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PositionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PositionMode KEYFRAME
public static final PositionMode TIME
public static final PositionMode SEGMENT
public static PositionMode[] values()
for (PositionMode c : PositionMode.values()) System.out.println(c);
public static PositionMode 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 nullpublic String getValue()
public String toString()
toString
in class Enum<PositionMode>
public static PositionMode fromValue(String text)
Copyright © 2025. All rights reserved.