
tsg.ns.wsdl.coop.PartnerOtherRelationships Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PartnerOtherRelationships.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="PartnerOtherRelationships">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="_customer"/>
* <enumeration value="_otherName"/>
* <enumeration value="_vendor"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "PartnerOtherRelationships", namespace = "urn:types.relationships_2023_1.lists.webservices.netsuite.com")
@XmlEnum
public enum PartnerOtherRelationships {
@XmlEnumValue("_customer")
CUSTOMER("_customer"),
@XmlEnumValue("_otherName")
OTHER_NAME("_otherName"),
@XmlEnumValue("_vendor")
VENDOR("_vendor");
private final String value;
PartnerOtherRelationships(String v) {
value = v;
}
public String value() {
return value;
}
public static PartnerOtherRelationships fromValue(String v) {
for (PartnerOtherRelationships c: PartnerOtherRelationships.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy