org.drmcrop.AddressCategoryEnumeration Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.10.22 at 06:25:25 PM CEST
//
package org.drmcrop;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AddressCategoryEnumeration.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="AddressCategoryEnumeration">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="VISITING"/>
* <enumeration value="DELIVERY"/>
* <enumeration value="POSTAL"/>
* <enumeration value="EMAIL"/>
* <enumeration value="IP"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "AddressCategoryEnumeration", namespace = "http://www.drmCrop.org/schemas/Enumerations")
@XmlEnum
public enum AddressCategoryEnumeration {
/**
* Definition.
* The address where a person can visit the Party (Person or Organisation).
*
*/
VISITING,
/**
* Definition.
* The address where goods can be delivered.
*
*/
DELIVERY,
/**
* Definition.
* The adress where post (letters, small packages) can be delivered.
*
*/
POSTAL,
/**
* Definition.
* The email address for electronic mail.
*
*/
EMAIL,
/**
* Definition.
* An Internet Protocol address (IP address) is a numerical label assigned to each device (e.g., computer, printer) participating in a computer network that uses the Internet Protocol for communication. (after DOD Standard Internet Protocol (January 1980)
*
* REMARK.
* DATA TYPE TO BE LOOKED AFTER, AS IT HAS SWPECIFIC RESTRICTIONS.
*
*/
IP;
public String value() {
return name();
}
public static AddressCategoryEnumeration fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy