public enum WavSaveOrder extends Enum<WavSaveOrder>
Enum Constant and Description |
---|
ID3_THEN_INFO |
INFO_THEN_ID3 |
Modifier and Type | Method and Description |
---|---|
static WavSaveOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WavSaveOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WavSaveOrder INFO_THEN_ID3
public static final WavSaveOrder ID3_THEN_INFO
public static WavSaveOrder[] values()
for (WavSaveOrder c : WavSaveOrder.values()) System.out.println(c);
public static WavSaveOrder 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.