public enum AttributeModificationType extends Enum<AttributeModificationType>
Enum Constant and Description |
---|
ADD
add an attribute.
|
REMOVE
remove an attribute.
|
REPLACE
replace an attribute.
|
Modifier and Type | Method and Description |
---|---|
static AttributeModificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeModificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeModificationType ADD
public static final AttributeModificationType REPLACE
public static final AttributeModificationType REMOVE
public static AttributeModificationType[] values()
for (AttributeModificationType c : AttributeModificationType.values()) System.out.println(c);
public static AttributeModificationType 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 © 2003-2019 Virginia Tech. All Rights Reserved.