public enum CustomFieldEntityType extends Enum<CustomFieldEntityType>
Java class for CustomFieldEntityType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CustomFieldEntityType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="LINE_ITEM"/>
<enumeration value="ORDER"/>
<enumeration value="CREATIVE"/>
<enumeration value="PRODUCT_TEMPLATE"/>
<enumeration value="PRODUCT"/>
<enumeration value="PROPOSAL"/>
<enumeration value="PROPOSAL_LINE_ITEM"/>
<enumeration value="USER"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CREATIVE
Represents the
Creative type. |
LINE_ITEM
Represents the
LineItem type. |
ORDER
Represents the
Order type. |
PRODUCT
Represents the
Product type. |
PRODUCT_TEMPLATE
Represents the
ProductTemplate type. |
PROPOSAL
Represents the
Proposal type. |
PROPOSAL_LINE_ITEM
Represents the
ProposalLineItem type. |
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
USER
Represents the
User type. |
| Modifier and Type | Method and Description |
|---|---|
static CustomFieldEntityType |
fromValue(String v) |
String |
value() |
static CustomFieldEntityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomFieldEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomFieldEntityType LINE_ITEM
LineItem type.public static final CustomFieldEntityType ORDER
Order type.public static final CustomFieldEntityType CREATIVE
Creative type.public static final CustomFieldEntityType PRODUCT_TEMPLATE
ProductTemplate type.public static final CustomFieldEntityType PRODUCT
Product type.public static final CustomFieldEntityType PROPOSAL
Proposal type.public static final CustomFieldEntityType PROPOSAL_LINE_ITEM
ProposalLineItem type.public static final CustomFieldEntityType USER
User type.public static final CustomFieldEntityType UNKNOWN
public static CustomFieldEntityType[] values()
for (CustomFieldEntityType c : CustomFieldEntityType.values()) System.out.println(c);
public static CustomFieldEntityType 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 CustomFieldEntityType fromValue(String v)
Copyright © 2018. All Rights Reserved.