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