public static enum IndexingCommand.Type extends Enum<IndexingCommand.Type>
| Enum Constant and Description | 
|---|
DELETE  | 
INSERT  | 
UPDATE  | 
UPDATE_DIRECT_CHILDREN  | 
UPDATE_SECURITY  | 
| Modifier and Type | Method and Description | 
|---|---|
static IndexingCommand.Type | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static IndexingCommand.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final IndexingCommand.Type INSERT
public static final IndexingCommand.Type UPDATE
public static final IndexingCommand.Type UPDATE_SECURITY
public static final IndexingCommand.Type DELETE
public static final IndexingCommand.Type UPDATE_DIRECT_CHILDREN
public static IndexingCommand.Type[] values()
for (IndexingCommand.Type c : IndexingCommand.Type.values()) System.out.println(c);
public static IndexingCommand.Type 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 © 2019 Nuxeo. All rights reserved.