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 SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static PipesServer.STATUSlookup(int val)static PipesServer.STATUSvalueOf(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- 
READYpublic static final PipesServer.STATUS READY 
 - 
CALLpublic static final PipesServer.STATUS CALL 
 - 
PINGpublic static final PipesServer.STATUS PING 
 - 
FAILED_TO_STARTpublic static final PipesServer.STATUS FAILED_TO_START 
 - 
FETCHER_NOT_FOUNDpublic static final PipesServer.STATUS FETCHER_NOT_FOUND 
 - 
EMITTER_NOT_FOUNDpublic static final PipesServer.STATUS EMITTER_NOT_FOUND 
 - 
FETCHER_INITIALIZATION_EXCEPTIONpublic static final PipesServer.STATUS FETCHER_INITIALIZATION_EXCEPTION 
 - 
FETCH_EXCEPTIONpublic static final PipesServer.STATUS FETCH_EXCEPTION 
 - 
PARSE_SUCCESSpublic static final PipesServer.STATUS PARSE_SUCCESS 
 - 
PARSE_EXCEPTION_NO_EMITpublic static final PipesServer.STATUS PARSE_EXCEPTION_NO_EMIT 
 - 
EMIT_SUCCESSpublic static final PipesServer.STATUS EMIT_SUCCESS 
 - 
EMIT_SUCCESS_PARSE_EXCEPTIONpublic static final PipesServer.STATUS EMIT_SUCCESS_PARSE_EXCEPTION 
 - 
EMIT_EXCEPTIONpublic static final PipesServer.STATUS EMIT_EXCEPTION 
 - 
OOMpublic static final PipesServer.STATUS OOM 
 - 
TIMEOUTpublic static final PipesServer.STATUS TIMEOUT 
 - 
EMPTY_OUTPUTpublic static final PipesServer.STATUS EMPTY_OUTPUT 
 - 
INTERMEDIATE_RESULTpublic static final PipesServer.STATUS INTERMEDIATE_RESULT 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
lookuppublic static PipesServer.STATUS lookup(int val) 
 
- 
 
-