public enum ProposalCompanyAssociationType extends Enum<ProposalCompanyAssociationType>
Java class for ProposalCompanyAssociationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ProposalCompanyAssociationType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PRIMARY_AGENCY"/>
<enumeration value="BILLING_AGENCY"/>
<enumeration value="BRANDING_AGENCY"/>
<enumeration value="OTHER_AGENCY"/>
<enumeration value="ADVERTISER"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADVERTISER
The company is advertiser.
|
BILLING_AGENCY
The company is a billing agency.
|
BRANDING_AGENCY
The company is a branding agency.
|
OTHER_AGENCY
The company is other type of agency.
|
PRIMARY_AGENCY
The company is a primary agency.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static ProposalCompanyAssociationType |
fromValue(String v) |
String |
value() |
static ProposalCompanyAssociationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProposalCompanyAssociationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProposalCompanyAssociationType PRIMARY_AGENCY
public static final ProposalCompanyAssociationType BILLING_AGENCY
public static final ProposalCompanyAssociationType BRANDING_AGENCY
public static final ProposalCompanyAssociationType OTHER_AGENCY
public static final ProposalCompanyAssociationType ADVERTISER
public static final ProposalCompanyAssociationType UNKNOWN
public static ProposalCompanyAssociationType[] values()
for (ProposalCompanyAssociationType c : ProposalCompanyAssociationType.values()) System.out.println(c);
public static ProposalCompanyAssociationType 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 ProposalCompanyAssociationType fromValue(String v)
Copyright © 2018. All Rights Reserved.