org.eclipse.persistence.jaxb.xmlmodel.XmlEnum Maven / Gradle / Ivy
Show all versions of org.eclipse.persistence.moxy
/*******************************************************************************
* Copyright (c) 1998, 2014 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* dmccann - June 29/2009 - 2.0 - Initial implementation
******************************************************************************/
package org.eclipse.persistence.jaxb.xmlmodel;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.eclipse.org/eclipselink/xsds/persistence/oxm}xml-enum-value" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="java-enum" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" default="java.lang.String" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"xmlEnumValue"
})
@XmlRootElement(name = "xml-enum")
public class XmlEnum {
@XmlElement(name = "xml-enum-value")
protected List xmlEnumValue;
@XmlAttribute(name = "java-enum", required = true)
protected String javaEnum;
@XmlAttribute
protected String value;
/**
* Gets the value of the xmlEnumValue property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the xmlEnumValue property.
*
*
* For example, to add a new item, do as follows:
*
* getXmlEnumValue().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XmlEnumValue }
*
*
*/
public List getXmlEnumValue() {
if (xmlEnumValue == null) {
xmlEnumValue = new ArrayList();
}
return this.xmlEnumValue;
}
/**
* Gets the value of the javaEnum property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJavaEnum() {
return javaEnum;
}
/**
* Sets the value of the javaEnum property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJavaEnum(String value) {
this.javaEnum = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
if (value == null) {
return "java.lang.String";
} else {
return value;
}
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
}