public enum ListOperationsListOperator extends Enum<ListOperationsListOperator>
Java class for ListOperations.ListOperator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ListOperations.ListOperator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PUT"/>
<enumeration value="REMOVE"/>
<enumeration value="UPDATE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
PUT
Adds to a list, or overrides an existing element if it exists.
|
REMOVE
Removes this element from the list.
|
UNKNOWN
Used for return value only.
|
UPDATE
Updates this element with the existing behavior of null fields inside the list element being
a no-op.
|
| Modifier and Type | Method and Description |
|---|---|
static ListOperationsListOperator |
fromValue(String v) |
String |
value() |
static ListOperationsListOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListOperationsListOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListOperationsListOperator PUT
public static final ListOperationsListOperator REMOVE
public static final ListOperationsListOperator UPDATE
public static final ListOperationsListOperator UNKNOWN
public static ListOperationsListOperator[] values()
for (ListOperationsListOperator c : ListOperationsListOperator.values()) System.out.println(c);
public static ListOperationsListOperator 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 nullpublic String value()
public static ListOperationsListOperator fromValue(String v)
Copyright © 2023. All rights reserved.