public enum CartridgeType extends Enum<CartridgeType>
| Enum Constant and Description |
|---|
CRT
CRT cartridge header auto detection for various cartridge types.
|
GEORAM |
REU |
| Modifier and Type | Method and Description |
|---|---|
static CartridgeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CartridgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CartridgeType GEORAM
public static final CartridgeType REU
public static final CartridgeType CRT
public static CartridgeType[] values()
for (CartridgeType c : CartridgeType.values()) System.out.println(c);
public static CartridgeType 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.