public enum ImportType extends Enum<ImportType>
| Enum Constant and Description |
|---|
ALL
Existing data in the backend is NOT DELETED before the import operation.
|
DELETE
Existing data in the backend is DELETED before the import operation.
|
NEW
Existing data in the backend is NOT DELETED before the import operation.
|
OLD
Existing data in the backend is NOT DELETED before the import operation.
|
| Modifier and Type | Method and Description |
|---|---|
static ImportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportType DELETE
public static final ImportType ALL
public static final ImportType NEW
public static final ImportType OLD
public static ImportType[] values()
for (ImportType c : ImportType.values()) System.out.println(c);
public static ImportType 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 © 2015–2016 Red Hat, Inc.. All rights reserved.