public enum TunnelType extends java.lang.Enum<TunnelType>
Enum Constant and Description |
---|
BUNDLED_REDSTONE |
COMPUTER_MESSAGE |
FLUID |
IC2_POWER |
ITEM |
LIGHT |
ME |
PRESSURE |
REDSTONE |
RF_POWER |
Modifier and Type | Method and Description |
---|---|
static TunnelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TunnelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TunnelType ME
public static final TunnelType IC2_POWER
public static final TunnelType RF_POWER
public static final TunnelType REDSTONE
public static final TunnelType FLUID
public static final TunnelType ITEM
public static final TunnelType LIGHT
public static final TunnelType BUNDLED_REDSTONE
public static final TunnelType COMPUTER_MESSAGE
public static final TunnelType PRESSURE
public static TunnelType[] values()
for (TunnelType c : TunnelType.values()) System.out.println(c);
public static TunnelType 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