public static enum SidTune.Speed extends Enum<SidTune.Speed>
Enum Constant and Description |
---|
CIA_1A
CIA 1 timer interrupt (default 60Hz)
|
VBI
vertical blank interrupt (50Hz PAL, 60Hz NTSC)
|
Modifier and Type | Method and Description |
---|---|
int |
speedValue() |
static SidTune.Speed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SidTune.Speed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SidTune.Speed VBI
public static final SidTune.Speed CIA_1A
public static SidTune.Speed[] values()
for (SidTune.Speed c : SidTune.Speed.values()) System.out.println(c);
public static SidTune.Speed 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 nullpublic int speedValue()
Copyright © 2018 Ken Händel. All rights reserved.