public enum SeekMode extends Enum<SeekMode>
| Enum Constant and Description |
|---|
ABS_COUNT |
ABS_TIME |
CHANNEL_FREQ |
FRAME |
REL_COUNT |
REL_TIME |
TAPE_INDEX |
TRACK_NR |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SeekMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeekMode |
valueOrExceptionOf(String s) |
static SeekMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeekMode TRACK_NR
public static final SeekMode ABS_TIME
public static final SeekMode REL_TIME
public static final SeekMode ABS_COUNT
public static final SeekMode REL_COUNT
public static final SeekMode CHANNEL_FREQ
public static final SeekMode TAPE_INDEX
public static final SeekMode FRAME
public static SeekMode[] values()
for (SeekMode c : SeekMode.values()) System.out.println(c);
public static SeekMode 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 © 2023 jUPnP.org. All rights reserved.