public static enum Frame.Type extends Enum<Frame.Type>
| Enum Constant and Description |
|---|
ATTACHMENT |
AUDIO |
DATA |
SUBTITLE |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
static Frame.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Frame.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Frame.Type VIDEO
public static final Frame.Type AUDIO
public static final Frame.Type DATA
public static final Frame.Type SUBTITLE
public static final Frame.Type ATTACHMENT
public static Frame.Type[] values()
for (Frame.Type c : Frame.Type.values()) System.out.println(c);
public static Frame.Type 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 nullCopyright © 2024. All rights reserved.