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