public enum AECableType extends java.lang.Enum<AECableType>
Enum Constant and Description |
---|
COVERED
Connections to this block should render as covered.
|
DENSE
Dense Cable, represents a tier 2 block that can carry 32 channels.
|
GLASS
Connections to this block should render as glass.
|
NONE
No Cable present.
|
SMART
Connections to this block should render as smart.
|
Modifier and Type | Method and Description |
---|---|
static AECableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AECableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AECableType NONE
public static final AECableType GLASS
public static final AECableType COVERED
public static final AECableType SMART
public static final AECableType DENSE
public static AECableType[] values()
for (AECableType c : AECableType.values()) System.out.println(c);
public static AECableType 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