Enum GetAclType
- java.lang.Object
-
- java.lang.Enum<GetAclType>
-
- zowe.client.sdk.zosfiles.uss.types.GetAclType
-
- All Implemented Interfaces:
Serializable,Comparable<GetAclType>
public enum GetAclType extends Enum<GetAclType>
GetAclType class provides ACL type representation of Unix System Services (USS) objects- Version:
- 5.0
- Author:
- Frank Giordano
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()Returns the value of the GetAclType type.static GetAclTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GetAclType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESS
public static final GetAclType ACCESS
Displays the access ACL entries. This is the default if others are not specified.
-
DIR
public static final GetAclType DIR
Displays the directory default ACL entries.
-
FILE
public static final GetAclType FILE
Displays the file default ACL entries.
-
-
Method Detail
-
values
public static GetAclType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GetAclType c : GetAclType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GetAclType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
Returns the value of the GetAclType type.- Returns:
- the value of the GetAclType type
-
-