org.apache.cxf.configuration.foo.TpAddressPresentation Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.04.24 at 05:41:14 PM EDT
//
package org.apache.cxf.configuration.foo;
import javax.xml.bind.annotation.XmlEnum;
/**
* Java class for TpAddressPresentation.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="TpAddressPresentation">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="P_ADDRESS_PRESENTATION_UNDEFINED"/>
* <enumeration value="P_ADDRESS_PRESENTATION_ALLOWED"/>
* <enumeration value="P_ADDRESS_PRESENTATION_RESTRICTED"/>
* <enumeration value="P_ADDRESS_PRESENTATION_ADDRESS_NOT_AVAILABLE"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlEnum
public enum TpAddressPresentation {
P_ADDRESS_PRESENTATION_UNDEFINED,
P_ADDRESS_PRESENTATION_ALLOWED,
P_ADDRESS_PRESENTATION_RESTRICTED,
P_ADDRESS_PRESENTATION_ADDRESS_NOT_AVAILABLE;
public String value() {
return name();
}
public static TpAddressPresentation fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy