public enum IndexerWriterMode extends java.lang.Enum<IndexerWriterMode>
| Enum Constant and Description |
|---|
DELETE |
PARTIAL_UPDATE |
SKIP |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static IndexerWriterMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexerWriterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexerWriterMode DELETE
public static final IndexerWriterMode PARTIAL_UPDATE
public static final IndexerWriterMode SKIP
public static final IndexerWriterMode UPDATE
public static IndexerWriterMode[] values()
for (IndexerWriterMode c : IndexerWriterMode.values()) System.out.println(c);
public static IndexerWriterMode 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