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

com.omgm.speedy.eps.soap.model.AddrNomen Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

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


/**
 * 

Java class for addrNomen. * *

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

*

 * <simpleType name="addrNomen">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="NO"/>
 *     <enumeration value="FULL"/>
 *     <enumeration value="PARTIAL"/>
 *   </restriction>
 * </simpleType>
 * 
* *

Enumeration to determine whether speedy address nomenclature is full, partial or missing for certain sites * * @since 1.0.0 */ @XmlType(name = "addrNomen") @XmlEnum public enum AddrNomen { /** * Speedy has no address nomenclature (streets, quarters etc.) for the site. */ NO, /** * Speedy has full address nomenclature (streets, quarters etc.) for the site. */ FULL, /** * Speedy has partial address nomenclature (streets, quarters etc.) for this site. */ PARTIAL; /** * Get enumeration name as value * @return Enumeration name */ public String value() { return name(); } /** * Get enum instance from string * @param v String value * @return Enum instance */ public static AddrNomen fromValue(String v) { return valueOf(v); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy