Package org.apache.tika.pipes
Enum PipesResult.STATUS
- java.lang.Object
-
- java.lang.Enum<PipesResult.STATUS>
-
- org.apache.tika.pipes.PipesResult.STATUS
-
- All Implemented Interfaces:
Serializable
,Comparable<PipesResult.STATUS>
- Enclosing class:
- PipesResult
public static enum PipesResult.STATUS extends Enum<PipesResult.STATUS>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipesResult.STATUS
valueOf(String name)
Returns the enum constant of this type with the specified name.static PipesResult.STATUS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_UNAVAILABLE_WITHIN_MS
public static final PipesResult.STATUS CLIENT_UNAVAILABLE_WITHIN_MS
-
FETCHER_INITIALIZATION_EXCEPTION
public static final PipesResult.STATUS FETCHER_INITIALIZATION_EXCEPTION
-
FETCH_EXCEPTION
public static final PipesResult.STATUS FETCH_EXCEPTION
-
EMPTY_OUTPUT
public static final PipesResult.STATUS EMPTY_OUTPUT
-
PARSE_EXCEPTION_NO_EMIT
public static final PipesResult.STATUS PARSE_EXCEPTION_NO_EMIT
-
PARSE_EXCEPTION_EMIT
public static final PipesResult.STATUS PARSE_EXCEPTION_EMIT
-
PARSE_SUCCESS
public static final PipesResult.STATUS PARSE_SUCCESS
-
PARSE_SUCCESS_WITH_EXCEPTION
public static final PipesResult.STATUS PARSE_SUCCESS_WITH_EXCEPTION
-
OOM
public static final PipesResult.STATUS OOM
-
TIMEOUT
public static final PipesResult.STATUS TIMEOUT
-
UNSPECIFIED_CRASH
public static final PipesResult.STATUS UNSPECIFIED_CRASH
-
NO_EMITTER_FOUND
public static final PipesResult.STATUS NO_EMITTER_FOUND
-
EMIT_SUCCESS
public static final PipesResult.STATUS EMIT_SUCCESS
-
EMIT_SUCCESS_PARSE_EXCEPTION
public static final PipesResult.STATUS EMIT_SUCCESS_PARSE_EXCEPTION
-
EMIT_EXCEPTION
public static final PipesResult.STATUS EMIT_EXCEPTION
-
INTERRUPTED_EXCEPTION
public static final PipesResult.STATUS INTERRUPTED_EXCEPTION
-
NO_FETCHER_FOUND
public static final PipesResult.STATUS NO_FETCHER_FOUND
-
INTERMEDIATE_RESULT
public static final PipesResult.STATUS INTERMEDIATE_RESULT
-
-
Method Detail
-
values
public static PipesResult.STATUS[] 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 (PipesResult.STATUS c : PipesResult.STATUS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PipesResult.STATUS 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
-
-