public static enum AccessedAttribute.Operation extends Enum<AccessedAttribute.Operation>
| Enum Constant and Description |
|---|
CREATE
Indicates that the attribute was initiated with some data.
|
DELETE
Indicates that the attribute was finally cleared.
|
READ
Indicates that the attribute was read, without any modification.
|
WRITE
Indicates that the attribute was modified.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessedAttribute.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessedAttribute.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessedAttribute.Operation CREATE
public static final AccessedAttribute.Operation DELETE
public static final AccessedAttribute.Operation READ
public static final AccessedAttribute.Operation WRITE
public static AccessedAttribute.Operation[] values()
for (AccessedAttribute.Operation c : AccessedAttribute.Operation.values()) System.out.println(c);
public static AccessedAttribute.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 nullCopyright © 2022 SAP SE. All rights reserved.