public static enum ImportOptions.ExistingNodeOptions extends Enum<ImportOptions.ExistingNodeOptions>
Enum Constant and Description |
---|
CREATE_NEW
Create a new sister node with slightly edited name
|
OVERWRITE
Replace the existing node
|
RETURN
Do not proceed further
|
Modifier and Type | Method and Description |
---|---|
static ImportOptions.ExistingNodeOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportOptions.ExistingNodeOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportOptions.ExistingNodeOptions OVERWRITE
public static final ImportOptions.ExistingNodeOptions RETURN
public static final ImportOptions.ExistingNodeOptions CREATE_NEW
public static ImportOptions.ExistingNodeOptions[] values()
for (ImportOptions.ExistingNodeOptions c : ImportOptions.ExistingNodeOptions.values()) System.out.println(c);
public static ImportOptions.ExistingNodeOptions 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 © 2013–2019. All rights reserved.