public static enum ALSBImportOperation.Operation extends Enum<ALSBImportOperation.Operation>
| Enum Constant and Description |
|---|
Create
Indicates that the resource is imported by creating it.
|
Delete
Indicates that the resource is deleted in the importing domain.
|
Skip
Indicates that the resource is skipped meaning the resource is not touched in the importing domain.
|
Update
Indicates that the resource is imported by updating it.
|
| Modifier and Type | Method and Description |
|---|---|
static ALSBImportOperation.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ALSBImportOperation.Operation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ALSBImportOperation.Operation Create
public static final ALSBImportOperation.Operation Update
public static final ALSBImportOperation.Operation Delete
public static final ALSBImportOperation.Operation Skip
public static ALSBImportOperation.Operation[] values()
for (ALSBImportOperation.Operation c : ALSBImportOperation.Operation.values())
System.out.println(c);
public static ALSBImportOperation.Operation 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 null