Package org.apache.tika.batch.fs
Enum FSUtil.HANDLE_EXISTING
- java.lang.Object
-
- java.lang.Enum<FSUtil.HANDLE_EXISTING>
-
- org.apache.tika.batch.fs.FSUtil.HANDLE_EXISTING
-
- All Implemented Interfaces:
Serializable
,Comparable<FSUtil.HANDLE_EXISTING>
- Enclosing class:
- FSUtil
public static enum FSUtil.HANDLE_EXISTING extends Enum<FSUtil.HANDLE_EXISTING>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FSUtil.HANDLE_EXISTING
valueOf(String name)
Returns the enum constant of this type with the specified name.static FSUtil.HANDLE_EXISTING[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OVERWRITE
public static final FSUtil.HANDLE_EXISTING OVERWRITE
-
RENAME
public static final FSUtil.HANDLE_EXISTING RENAME
-
SKIP
public static final FSUtil.HANDLE_EXISTING SKIP
-
-
Method Detail
-
values
public static FSUtil.HANDLE_EXISTING[] 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 (FSUtil.HANDLE_EXISTING c : FSUtil.HANDLE_EXISTING.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FSUtil.HANDLE_EXISTING 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
-
-