public enum FieldUpdateOperation extends Enum<FieldUpdateOperation>
Java class for FieldUpdateOperation.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FieldUpdateOperation">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Formula"/>
<enumeration value="Literal"/>
<enumeration value="Null"/>
<enumeration value="NextValue"/>
<enumeration value="PreviousValue"/>
<enumeration value="LookupValue"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FORMULA |
LITERAL |
LOOKUP_VALUE |
NEXT_VALUE |
NULL |
PREVIOUS_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static FieldUpdateOperation |
fromValue(String v) |
String |
value() |
static FieldUpdateOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldUpdateOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldUpdateOperation FORMULA
public static final FieldUpdateOperation LITERAL
public static final FieldUpdateOperation NULL
public static final FieldUpdateOperation NEXT_VALUE
public static final FieldUpdateOperation PREVIOUS_VALUE
public static final FieldUpdateOperation LOOKUP_VALUE
public static FieldUpdateOperation[] values()
for (FieldUpdateOperation c : FieldUpdateOperation.values()) System.out.println(c);
public static FieldUpdateOperation 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 FieldUpdateOperation fromValue(String v)
Copyright © 2016. All rights reserved.