Package com.jogamp.opengl.util.av
Enum SubTextEvent.ASSType
- java.lang.Object
-
- java.lang.Enum<SubTextEvent.ASSType>
-
- com.jogamp.opengl.util.av.SubTextEvent.ASSType
-
- All Implemented Interfaces:
Serializable
,Comparable<SubTextEvent.ASSType>
- Enclosing class:
- SubTextEvent
public static enum SubTextEvent.ASSType extends Enum<SubTextEvent.ASSType>
ASS Formatting Type
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SubTextEvent.ASSType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SubTextEvent.ASSType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIALOGUE
public static final SubTextEvent.ASSType DIALOGUE
ASS dialogue-line output w/ start and end (Given by FFmpeg 4.*)0 1 2 3 4 5 6 7 8 9 Marked, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text 'Dialogue: 0,0:02:02.15,0:02:02.16,Default,,0,0,0,,trying to force him to travel to that'
-
EVENT
public static final SubTextEvent.ASSType EVENT
FFMpeg ASS event-line output w/o start, end (Given by FFmpeg 5.*, 6.*, ..)0 1 2 3 4 5 6 7 8 Seq, Layer, Style, Name, MarginL, MarginR, MarginV, Effect, TEXT
-
TEXT
public static final SubTextEvent.ASSType TEXT
Just plain text
-
-
Method Detail
-
values
public static SubTextEvent.ASSType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SubTextEvent.ASSType c : SubTextEvent.ASSType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubTextEvent.ASSType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-