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