Package org.jesterj.ingest.processors
Enum DocumentLoggingContext.ContextNames
- java.lang.Object
-
- java.lang.Enum<DocumentLoggingContext.ContextNames>
-
- org.jesterj.ingest.processors.DocumentLoggingContext.ContextNames
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DocumentLoggingContext.ContextNames>
- Enclosing class:
- DocumentLoggingContext
public static enum DocumentLoggingContext.ContextNames extends java.lang.Enum<DocumentLoggingContext.ContextNames>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JJ_DOC_HASHJJ_DOC_IDJJ_ORIG_PARENT_IDJJ_OUTPUT_STEP_CHANGESJJ_PARENT_IDJJ_SCANNER_NAMEJJ_STATUS_CHANGES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentLoggingContext.ContextNamesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DocumentLoggingContext.ContextNames[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JJ_DOC_ID
public static final DocumentLoggingContext.ContextNames JJ_DOC_ID
-
JJ_DOC_HASH
public static final DocumentLoggingContext.ContextNames JJ_DOC_HASH
-
JJ_SCANNER_NAME
public static final DocumentLoggingContext.ContextNames JJ_SCANNER_NAME
-
JJ_PARENT_ID
public static final DocumentLoggingContext.ContextNames JJ_PARENT_ID
-
JJ_ORIG_PARENT_ID
public static final DocumentLoggingContext.ContextNames JJ_ORIG_PARENT_ID
-
JJ_OUTPUT_STEP_CHANGES
public static final DocumentLoggingContext.ContextNames JJ_OUTPUT_STEP_CHANGES
-
JJ_STATUS_CHANGES
public static final DocumentLoggingContext.ContextNames JJ_STATUS_CHANGES
-
-
Method Detail
-
values
public static DocumentLoggingContext.ContextNames[] 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 (DocumentLoggingContext.ContextNames c : DocumentLoggingContext.ContextNames.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentLoggingContext.ContextNames 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
-
-