com.microsoft.bingads.v13.campaignmanagement.IntentOption Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for IntentOption.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "IntentOption")
@XmlEnum
public enum IntentOption {
@XmlEnumValue("PeopleInOrSearchingForOrViewingPages")
PEOPLE_IN_OR_SEARCHING_FOR_OR_VIEWING_PAGES("PeopleInOrSearchingForOrViewingPages"),
@XmlEnumValue("PeopleIn")
PEOPLE_IN("PeopleIn"),
@XmlEnumValue("PeopleSearchingForOrViewingPages")
PEOPLE_SEARCHING_FOR_OR_VIEWING_PAGES("PeopleSearchingForOrViewingPages");
private final String value;
IntentOption(String v) {
value = v;
}
public String value() {
return value;
}
public static IntentOption fromValue(String v) {
for (IntentOption c: IntentOption.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy