public enum MediaClockFormat extends Enum<MediaClockFormat>
Sp = Space
| = or
c = character
| Enum Constant and Description |
|---|
CLOCK1 |
CLOCK2 |
CLOCK3 |
CLOCKTEXT1 |
CLOCKTEXT2 |
CLOCKTEXT3 |
CLOCKTEXT4 |
| Modifier and Type | Method and Description |
|---|---|
static MediaClockFormat |
valueForString(String value) |
static MediaClockFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaClockFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaClockFormat CLOCK1
public static final MediaClockFormat CLOCK2
public static final MediaClockFormat CLOCK3
public static final MediaClockFormat CLOCKTEXT1
public static final MediaClockFormat CLOCKTEXT2
public static final MediaClockFormat CLOCKTEXT3
public static final MediaClockFormat CLOCKTEXT4
public static MediaClockFormat[] values()
for (MediaClockFormat c : MediaClockFormat.values()) System.out.println(c);
public static MediaClockFormat 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 static MediaClockFormat valueForString(String value)