Enum Class SecurityPermissions

java.lang.Object
java.lang.Enum<SecurityPermissions>
appeng.api.config.SecurityPermissions
All Implemented Interfaces:
Serializable, Comparable<SecurityPermissions>, Constable

public enum SecurityPermissions extends Enum<SecurityPermissions>
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 Constants
    Enum Constant
    Description
    required 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 Type
    Method
    Description
    net.minecraft.network.chat.Component
     
    net.minecraft.network.chat.Component
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • INJECT

      public static final SecurityPermissions 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

      public static final SecurityPermissions 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

      public static final SecurityPermissions CRAFT
      required to request crafting from the network via terminal.
    • BUILD

      public static final SecurityPermissions BUILD
      required to modify automation, and make modifications to the networks physical layout.
    • SECURITY

      public static final SecurityPermissions SECURITY
      required to modify the security blocks settings.
  • Method Details

    • values

      public static SecurityPermissions[] 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

      public static SecurityPermissions valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getDisplayName

      public net.minecraft.network.chat.Component getDisplayName()
    • getDisplayHint

      public net.minecraft.network.chat.Component getDisplayHint()