Enum DumpArchiveEntry.TYPE
java.lang.Object
java.lang.Enum<DumpArchiveEntry.TYPE>
org.apache.commons.compress.archivers.dump.DumpArchiveEntry.TYPE
- All Implemented Interfaces:
Serializable,Comparable<DumpArchiveEntry.TYPE>
- Enclosing class:
DumpArchiveEntry
Enumerates types.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic DumpArchiveEntry.TYPEfind(int code) Finds a matching enumeration value for the given code.static DumpArchiveEntry.TYPEReturns the enum constant of this type with the specified name.static DumpArchiveEntry.TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
WHITEOUT
WHITEOUT with code 14. -
SOCKET
SOCKET with code 12. -
LINK
LINK with code 10. -
FILE
FILE with code 8. -
BLKDEV
BLKDEV with code 6. -
DIRECTORY
DIRECTORY with code 4. -
CHRDEV
CHRDEV with code 2. -
FIFO
CHRDEV with code 1. -
UNKNOWN
UNKNOWN with code 15.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
find
Finds a matching enumeration value for the given code.- Parameters:
code- a code.- Returns:
- a value, never null.
-