Enum DumpArchiveEntry.PERMISSION
- java.lang.Object
-
- java.lang.Enum<DumpArchiveEntry.PERMISSION>
-
- org.apache.commons.compress.archivers.dump.DumpArchiveEntry.PERMISSION
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DumpArchiveEntry.PERMISSION>
- Enclosing class:
- DumpArchiveEntry
public static enum DumpArchiveEntry.PERMISSION extends java.lang.Enum<DumpArchiveEntry.PERMISSION>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GROUP_EXEC
GROUP_READ
GROUP_WRITE
SETGUI
SETUID
STICKY
USER_EXEC
USER_READ
USER_WRITE
WORLD_EXEC
WORLD_READ
WORLD_WRITE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Set<DumpArchiveEntry.PERMISSION>
find(int code)
static DumpArchiveEntry.PERMISSION
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DumpArchiveEntry.PERMISSION[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SETUID
public static final DumpArchiveEntry.PERMISSION SETUID
-
SETGUI
public static final DumpArchiveEntry.PERMISSION SETGUI
-
STICKY
public static final DumpArchiveEntry.PERMISSION STICKY
-
USER_READ
public static final DumpArchiveEntry.PERMISSION USER_READ
-
USER_WRITE
public static final DumpArchiveEntry.PERMISSION USER_WRITE
-
USER_EXEC
public static final DumpArchiveEntry.PERMISSION USER_EXEC
-
GROUP_READ
public static final DumpArchiveEntry.PERMISSION GROUP_READ
-
GROUP_WRITE
public static final DumpArchiveEntry.PERMISSION GROUP_WRITE
-
GROUP_EXEC
public static final DumpArchiveEntry.PERMISSION GROUP_EXEC
-
WORLD_READ
public static final DumpArchiveEntry.PERMISSION WORLD_READ
-
WORLD_WRITE
public static final DumpArchiveEntry.PERMISSION WORLD_WRITE
-
WORLD_EXEC
public static final DumpArchiveEntry.PERMISSION WORLD_EXEC
-
-
Method Detail
-
values
public static DumpArchiveEntry.PERMISSION[] 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 (DumpArchiveEntry.PERMISSION c : DumpArchiveEntry.PERMISSION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DumpArchiveEntry.PERMISSION valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
find
public static java.util.Set<DumpArchiveEntry.PERMISSION> find(int code)
-
-