public enum ChangeStatus extends Enum<ChangeStatus>
Java class for ChangeStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ChangeStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="FIELDS_UNCHANGED"/>
<enumeration value="FIELDS_CHANGED"/>
<enumeration value="NEW"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FIELDS_CHANGED
The fields of this entity have changed, for example the name of an adgroup.
|
FIELDS_UNCHANGED
The fields of this entity have not changed, but there may still be changes to its children.
|
NEW
This entity was created during the time frame we're looking at.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangeStatus |
fromValue(String v) |
String |
value() |
static ChangeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeStatus FIELDS_UNCHANGED
public static final ChangeStatus FIELDS_CHANGED
public static final ChangeStatus NEW
public static ChangeStatus[] values()
for (ChangeStatus c : ChangeStatus.values()) System.out.println(c);
public static ChangeStatus 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 ChangeStatus fromValue(String v)
Copyright © 2023. All rights reserved.