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