public enum DocumentHandlerTypes extends Enum<DocumentHandlerTypes>
| Enum Constant and Description |
|---|
ADD_DOC_TO_PROCESS |
CREATE_NEW_PROCESS |
DELETE_DOCUMENT |
REWRITE_IDX_FROM_DOC_TO_PROCESS |
REWRITE_IDX_FROM_PROCESS_TO_DOC |
RUN_SCRIPT |
| Modifier and Type | Method and Description |
|---|---|
static DocumentHandlerTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentHandlerTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentHandlerTypes CREATE_NEW_PROCESS
public static final DocumentHandlerTypes ADD_DOC_TO_PROCESS
public static final DocumentHandlerTypes REWRITE_IDX_FROM_DOC_TO_PROCESS
public static final DocumentHandlerTypes REWRITE_IDX_FROM_PROCESS_TO_DOC
public static final DocumentHandlerTypes RUN_SCRIPT
public static final DocumentHandlerTypes DELETE_DOCUMENT
public static DocumentHandlerTypes[] values()
for (DocumentHandlerTypes c : DocumentHandlerTypes.values()) System.out.println(c);
public static DocumentHandlerTypes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017 Suncode. All rights reserved.