public enum XPFOperationEnum extends Enum<XPFOperationEnum>
Enum Constant and Description |
---|
ADD
Add operation.
|
DELETE
Delete operation.
|
NOOP
No Operation.
|
UPDATE
Update operation.
|
Modifier and Type | Method and Description |
---|---|
static XPFOperationEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XPFOperationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XPFOperationEnum ADD
public static final XPFOperationEnum UPDATE
public static final XPFOperationEnum DELETE
public static final XPFOperationEnum NOOP
public static XPFOperationEnum[] values()
for (XPFOperationEnum c : XPFOperationEnum.values()) System.out.println(c);
public static XPFOperationEnum 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 © 2000–2021 Elastic Path Software, Inc. All rights reserved.