Enum Constant and Description |
---|
CANNOT_CARRY
cannot carry channels over this node.
|
CANNOT_CARRY_COMPRESSED
Used by P2P Tunnels to prevent tunnels from tunneling recursively.
|
COMPRESSED_CHANNEL
P2P ME tunnels use this setting.
|
DENSE_CAPACITY
This node can transmit 32 signals, this should only apply to Tier2 Cable, P2P Tunnels, and Quantum Network
Bridges.
|
MULTIBLOCK
This block is part of a multiblock, used in conjunction with REQUIRE_CHANNEL, and
IGridMultiblock see this
interface for details. |
PREFERRED
Indicates which path might be preferred, this only matters if two routes of equal length exist, ad only changes
the order they are processed in.
|
REQUIRE_CHANNEL
import/export buses, terminals, and other devices that use network features, will use this setting.
|
Modifier and Type | Method and Description |
---|---|
static GridFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GridFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridFlags REQUIRE_CHANNEL
public static final GridFlags COMPRESSED_CHANNEL
public static final GridFlags CANNOT_CARRY
public static final GridFlags CANNOT_CARRY_COMPRESSED
public static final GridFlags DENSE_CAPACITY
public static final GridFlags MULTIBLOCK
IGridMultiblock
see this
interface for details.public static final GridFlags PREFERRED
public static GridFlags[] values()
for (GridFlags c : GridFlags.values()) System.out.println(c);
public static GridFlags 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