Package appeng.api.config
Enum Class SecurityPermissions
- All Implemented Interfaces:
Serializable,Comparable<SecurityPermissions>,Constable
Represent the security systems basic permissions, these are not for anti-griefing, they are part of the mod as a
gameplay feature.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionrequired to modify automation, and make modifications to the networks physical layout.required to request crafting from the network via terminal.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.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.required to modify the security blocks settings. -
Method Summary
Modifier and TypeMethodDescriptionnet.minecraft.network.chat.Componentnet.minecraft.network.chat.Componentstatic SecurityPermissionsReturns the enum constant of this class with the specified name.static SecurityPermissions[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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. ) -
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. ) -
CRAFT
required to request crafting from the network via terminal. -
BUILD
required to modify automation, and make modifications to the networks physical layout. -
SECURITY
required to modify the security blocks settings.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getDisplayName
public net.minecraft.network.chat.Component getDisplayName() -
getDisplayHint
public net.minecraft.network.chat.Component getDisplayHint()
-