public enum Engine extends Enum<Engine>
Enum Constant and Description |
---|
EMULATION
Software (emulation using RESID or RESIDfp)
|
HARDSID
Hardware (HardSID4U USB device)
|
NETSID
Software (Network SID Device via socket connection)
|
SIDBLASTER
Hardware (SidBlaster USB device)
|
Modifier and Type | Method and Description |
---|---|
static Engine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Engine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Engine EMULATION
public static final Engine NETSID
public static final Engine HARDSID
public static final Engine SIDBLASTER
public static Engine[] values()
for (Engine c : Engine.values()) System.out.println(c);
public static Engine 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 © 2018 Ken Händel. All rights reserved.