public enum WavOptions extends Enum<WavOptions>
Enum Constant and Description |
---|
READ_ID3_ONLY |
READ_ID3_ONLY_AND_SYNC |
READ_ID3_UNLESS_ONLY_INFO |
READ_ID3_UNLESS_ONLY_INFO_AND_SYNC |
READ_INFO_ONLY |
READ_INFO_ONLY_AND_SYNC |
READ_INFO_UNLESS_ONLY_ID3 |
READ_INFO_UNLESS_ONLY_ID3_AND_SYNC |
Modifier and Type | Method and Description |
---|---|
static WavOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WavOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WavOptions READ_ID3_ONLY
public static final WavOptions READ_INFO_ONLY
public static final WavOptions READ_ID3_UNLESS_ONLY_INFO
public static final WavOptions READ_INFO_UNLESS_ONLY_ID3
public static final WavOptions READ_ID3_ONLY_AND_SYNC
public static final WavOptions READ_INFO_ONLY_AND_SYNC
public static final WavOptions READ_ID3_UNLESS_ONLY_INFO_AND_SYNC
public static final WavOptions READ_INFO_UNLESS_ONLY_ID3_AND_SYNC
public static WavOptions[] values()
for (WavOptions c : WavOptions.values()) System.out.println(c);
public static WavOptions 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 © 2005–2020 jthink.net. All rights reserved.