public enum ItemIndexError extends java.lang.Enum<ItemIndexError>
| Enum Constant and Description |
|---|
ATTACHMENT_LIMIT_REACHED |
DOCUMENT_PARSER_FAILURE |
GENERIC_ERROR |
MAILBOX_OFFLINE |
MARS_WRITER_TRUNCATION |
NONE |
STALE_EVENT |
TIMEOUT |
| Modifier and Type | Method and Description |
|---|---|
static ItemIndexError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItemIndexError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemIndexError NONE
public static final ItemIndexError GENERIC_ERROR
public static final ItemIndexError TIMEOUT
public static final ItemIndexError STALE_EVENT
public static final ItemIndexError MAILBOX_OFFLINE
public static final ItemIndexError ATTACHMENT_LIMIT_REACHED
public static final ItemIndexError MARS_WRITER_TRUNCATION
public static final ItemIndexError DOCUMENT_PARSER_FAILURE
public static ItemIndexError[] values()
for (ItemIndexError c : ItemIndexError.values()) System.out.println(c);
public static ItemIndexError valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null