Package org.apache.tika.pipes
Enum PipesServer.STATUS
- java.lang.Object
-
- java.lang.Enum<PipesServer.STATUS>
-
- org.apache.tika.pipes.PipesServer.STATUS
-
- All Implemented Interfaces:
Serializable
,Comparable<PipesServer.STATUS>
- Enclosing class:
- PipesServer
public static enum PipesServer.STATUS extends Enum<PipesServer.STATUS>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipesServer.STATUS
lookup(int val)
static PipesServer.STATUS
valueOf(String name)
Returns the enum constant of this type with the specified name.static PipesServer.STATUS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READY
public static final PipesServer.STATUS READY
-
CALL
public static final PipesServer.STATUS CALL
-
PING
public static final PipesServer.STATUS PING
-
FAILED_TO_START
public static final PipesServer.STATUS FAILED_TO_START
-
FETCHER_NOT_FOUND
public static final PipesServer.STATUS FETCHER_NOT_FOUND
-
EMITTER_NOT_FOUND
public static final PipesServer.STATUS EMITTER_NOT_FOUND
-
FETCHER_INITIALIZATION_EXCEPTION
public static final PipesServer.STATUS FETCHER_INITIALIZATION_EXCEPTION
-
FETCH_EXCEPTION
public static final PipesServer.STATUS FETCH_EXCEPTION
-
PARSE_SUCCESS
public static final PipesServer.STATUS PARSE_SUCCESS
-
PARSE_EXCEPTION_NO_EMIT
public static final PipesServer.STATUS PARSE_EXCEPTION_NO_EMIT
-
EMIT_SUCCESS
public static final PipesServer.STATUS EMIT_SUCCESS
-
EMIT_SUCCESS_PARSE_EXCEPTION
public static final PipesServer.STATUS EMIT_SUCCESS_PARSE_EXCEPTION
-
EMIT_EXCEPTION
public static final PipesServer.STATUS EMIT_EXCEPTION
-
OOM
public static final PipesServer.STATUS OOM
-
TIMEOUT
public static final PipesServer.STATUS TIMEOUT
-
EMPTY_OUTPUT
public static final PipesServer.STATUS EMPTY_OUTPUT
-
INTERMEDIATE_RESULT
public static final PipesServer.STATUS INTERMEDIATE_RESULT
-
-
Method Detail
-
values
public static PipesServer.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 (PipesServer.STATUS c : PipesServer.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 PipesServer.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
-
lookup
public static PipesServer.STATUS lookup(int val)
-
-