li.cil.oc.api.driver
| Enum Constant and Description |
|---|
Card
Extension cards such as graphics cards or redstone cards.
|
Disk
Floppy disks.
|
HardDiskDrive
Hard disk drives.
|
Memory
Memory extension components.
|
None
Invalid slot type.
|
Processor
CPU slots, used in servers.
|
Tool
Tool slot in robots (equipment slot).
|
Upgrade
Upgrade slot for robots.
|
| Modifier and Type | Method and Description |
|---|---|
static Slot |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Slot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Slot None
public static final Slot Card
public static final Slot Disk
public static final Slot HardDiskDrive
public static final Slot Memory
public static final Slot Processor
public static final Slot Tool
public static final Slot Upgrade
public static Slot[] values()
for (Slot c : Slot.values()) System.out.println(c);
public static Slot valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null