public enum StorageChannel extends java.lang.Enum<StorageChannel>
Enum Constant and Description |
---|
FLUIDS
AE2's Fluid Based Storage ( mainly added to better support ExtraCells )
|
ITEMS
AE2's Default Storage.
|
Modifier and Type | Field and Description |
---|---|
java.lang.Class<? extends IAEStack> |
type |
Modifier and Type | Method and Description |
---|---|
IItemList |
createList() |
static StorageChannel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StorageChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageChannel ITEMS
public static final StorageChannel FLUIDS
public final java.lang.Class<? extends IAEStack> type
public static StorageChannel[] values()
for (StorageChannel c : StorageChannel.values()) System.out.println(c);
public static StorageChannel 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 nullpublic IItemList createList()