Enum Class SecurityInformation

java.lang.Object
java.lang.Enum<SecurityInformation>
com.hierynomus.msdtyp.SecurityInformation
All Implemented Interfaces:
EnumWithValue<SecurityInformation>, Serializable, Comparable<SecurityInformation>, Constable

public enum SecurityInformation extends Enum<SecurityInformation> implements EnumWithValue<SecurityInformation>
[MS-DTYP].pdf 2.4.7 Security Information
  • Enum Constant Details

    • OWNER_SECURITY_INFORMATION

      public static final SecurityInformation OWNER_SECURITY_INFORMATION
    • GROUP_SECURITY_INFORMATION

      public static final SecurityInformation GROUP_SECURITY_INFORMATION
    • DACL_SECURITY_INFORMATION

      public static final SecurityInformation DACL_SECURITY_INFORMATION
    • SACL_SECURITY_INFORMATION

      public static final SecurityInformation SACL_SECURITY_INFORMATION
    • LABEL_SECURITY_INFORMATION

      public static final SecurityInformation LABEL_SECURITY_INFORMATION
    • UNPROTECTED_SACL_SECURITY_INFORMATION

      public static final SecurityInformation UNPROTECTED_SACL_SECURITY_INFORMATION
    • UNPROTECTED_DACL_SECURITY_INFORMATION

      public static final SecurityInformation UNPROTECTED_DACL_SECURITY_INFORMATION
    • PROTECTED_SACL_SECURITY_INFORMATION

      public static final SecurityInformation PROTECTED_SACL_SECURITY_INFORMATION
    • PROTECTED_DACL_SECURITY_INFORMATION

      public static final SecurityInformation PROTECTED_DACL_SECURITY_INFORMATION
    • ATTRIBUTE_SECURITY_INFORMATION

      public static final SecurityInformation ATTRIBUTE_SECURITY_INFORMATION
    • SCOPE_SECURITY_INFORMATION

      public static final SecurityInformation SCOPE_SECURITY_INFORMATION
    • BACKUP_SECURITY_INFORMATION

      public static final SecurityInformation BACKUP_SECURITY_INFORMATION
  • Field Details

    • value

      private long value
  • Constructor Details

    • SecurityInformation

      private SecurityInformation(long value)
  • Method Details

    • values

      public static SecurityInformation[] 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 SecurityInformation 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
    • getValue

      public long getValue()
      Specified by:
      getValue in interface EnumWithValue<SecurityInformation>