All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonservices.mws.sellers.model.HasSellerSuspendedListingsEnum Maven / Gradle / Ivy

The newest version!
package com.amazonservices.mws.sellers.model;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;

/**
 * 

Java class for HasSellerSuspendedListingsEnum. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="HasSellerSuspendedListingsEnum">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Yes"/>
 *     <enumeration value="No"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "HasSellerSuspendedListingsEnum") @XmlEnum public enum HasSellerSuspendedListingsEnum { @XmlEnumValue("Yes") YES("Yes"), @XmlEnumValue("No") NO("No"); private final String value; HasSellerSuspendedListingsEnum(String v) { value = v; } public String value() { return value; } public static HasSellerSuspendedListingsEnum fromValue(String v) { for (HasSellerSuspendedListingsEnum c: HasSellerSuspendedListingsEnum.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy