Enum SearchBloxClient.ResponseCode
- java.lang.Object
-
- java.lang.Enum<SearchBloxClient.ResponseCode>
-
- org.apache.manifoldcf.agents.output.searchblox.SearchBloxClient.ResponseCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SearchBloxClient.ResponseCode>
- Enclosing class:
- SearchBloxClient
public static enum SearchBloxClient.ResponseCode extends java.lang.Enum<SearchBloxClient.ResponseCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchBloxClient.ResponseCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SearchBloxClient.ResponseCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_INDEXED
public static final SearchBloxClient.ResponseCode DOCUMENT_INDEXED
-
DOCUMENT_REJECTED
public static final SearchBloxClient.ResponseCode DOCUMENT_REJECTED
-
DOCUMENT_DELETED
public static final SearchBloxClient.ResponseCode DOCUMENT_DELETED
-
DOCUMENT_NOT_EXIST
public static final SearchBloxClient.ResponseCode DOCUMENT_NOT_EXIST
-
DOCUMENT_NOT_FOUND
public static final SearchBloxClient.ResponseCode DOCUMENT_NOT_FOUND
-
COLLECTION_CLEARED
public static final SearchBloxClient.ResponseCode COLLECTION_CLEARED
-
ERROR_CLEARING_COLLECTION
public static final SearchBloxClient.ResponseCode ERROR_CLEARING_COLLECTION
-
COLLECTION_CREATED
public static final SearchBloxClient.ResponseCode COLLECTION_CREATED
-
INVALID_COLLECTION_NAME
public static final SearchBloxClient.ResponseCode INVALID_COLLECTION_NAME
-
INVALID_REQUEST
public static final SearchBloxClient.ResponseCode INVALID_REQUEST
-
INVALID_DOCUMENT_LOCATION
public static final SearchBloxClient.ResponseCode INVALID_DOCUMENT_LOCATION
-
NOT_CUSTOM_COLLECTION
public static final SearchBloxClient.ResponseCode NOT_CUSTOM_COLLECTION
-
LIMIT_EXCEEDED
public static final SearchBloxClient.ResponseCode LIMIT_EXCEEDED
-
INVALID_LICENSE_ID
public static final SearchBloxClient.ResponseCode INVALID_LICENSE_ID
-
SERVER_UNREACHABLE
public static final SearchBloxClient.ResponseCode SERVER_UNREACHABLE
-
-
Method Detail
-
values
public static SearchBloxClient.ResponseCode[] 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 (SearchBloxClient.ResponseCode c : SearchBloxClient.ResponseCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchBloxClient.ResponseCode 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
-
-