Enum Class SecurityInformation
java.lang.Object
java.lang.Enum<SecurityInformation>
org.cryptomator.frontend.dokany.internal.constants.SecurityInformation
- All Implemented Interfaces:
Serializable,Comparable<SecurityInformation>,Constable,EnumInteger
Identifies the object-related security information being set or queried. This security information includes:
- The owner of an object.
- The primary group of an object.>
- The discretionary access control list(DACL) of an object.
- The system access control list(SACL) of an object.
Structure taken from pinvoke.net
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionintgetMask()static SecurityInformationReturns the enum constant of this class with the specified name.static SecurityInformation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OWNER_SECURITY_INFORMATION
-
GROUP_SECURITY_INFORMATION
-
DACL_SECURITY_INFORMATION
-
SACL_SECURITY_INFORMATION
-
LABEL_SECURITY_INFORMATION
-
ATTRIBUTE_SECURITY_INFORMATION
-
SCOPE_SECURITY_INFORMATION
-
PROCESS_TRUST_LABEL_SECURITY_INFORMATION
-
ACCESS_FILTER_SECURITY_INFORMATION
-
BACKUP_SECURITY_INFORMATION
-
PROTECTED_SACL_SECURITY_INFORMATION
-
PROTECTED_DACL_SECURITY_INFORMATION
-
UNPROTECTED_SACL_SECURITY_INFORMATION
-
UNPROTECTED_DACL_SECURITY_INFORMATION
-
-
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
-
getMask
public int getMask()- Specified by:
getMaskin interfaceEnumInteger
-
getDescription
-