public enum SecurityPermissions extends java.lang.Enum<SecurityPermissions>
| Enum Constant and Description |
|---|
BUILD
required to modify automation, and make modifications to the networks physical layout.
|
CRAFT
required to request crafting from the network via terminal.
|
EXTRACT
required to extract items from the network via terminal ( also used for machines based on the owner of the
network, which is determined by its Security Block. )
|
INJECT
required to insert items into the network via terminal ( also used for machines based on the owner of the
network, which is determined by its Security Block. )
|
SECURITY
required to modify the security blocks settings.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getUnlocalizedName() |
java.lang.String |
getUnlocalizedTip() |
static SecurityPermissions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityPermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityPermissions INJECT
public static final SecurityPermissions EXTRACT
public static final SecurityPermissions CRAFT
public static final SecurityPermissions BUILD
public static final SecurityPermissions SECURITY
public static SecurityPermissions[] values()
for (SecurityPermissions c : SecurityPermissions.values()) System.out.println(c);
public static SecurityPermissions 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 java.lang.String getUnlocalizedName()
public java.lang.String getUnlocalizedTip()