Package com.io7m.coffeepick.api
Enum CoffeePickInventoryType.UnpackOption
- java.lang.Object
-
- java.lang.Enum<CoffeePickInventoryType.UnpackOption>
-
- com.io7m.coffeepick.api.CoffeePickInventoryType.UnpackOption
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CoffeePickInventoryType.UnpackOption>
- Enclosing interface:
- CoffeePickInventoryType
public static enum CoffeePickInventoryType.UnpackOption extends java.lang.Enum<CoffeePickInventoryType.UnpackOption>
Options for unpacking.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description STRIP_LEADING_DIRECTORYStrip the leading directory from archive files.STRIP_NON_OWNER_WRITABLEOn POSIX filesystems, remove write permissions for anything other than the owner.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CoffeePickInventoryType.UnpackOptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CoffeePickInventoryType.UnpackOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRIP_LEADING_DIRECTORY
public static final CoffeePickInventoryType.UnpackOption STRIP_LEADING_DIRECTORY
Strip the leading directory from archive files.
-
STRIP_NON_OWNER_WRITABLE
public static final CoffeePickInventoryType.UnpackOption STRIP_NON_OWNER_WRITABLE
On POSIX filesystems, remove write permissions for anything other than the owner.
-
-
Method Detail
-
values
public static CoffeePickInventoryType.UnpackOption[] 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 (CoffeePickInventoryType.UnpackOption c : CoffeePickInventoryType.UnpackOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CoffeePickInventoryType.UnpackOption 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
-
-