org.hudsonci.maven.model.config.DocumentStandardAttributeDTO Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.12.06 at 07:15:37 PM GMT
//
package org.hudsonci.maven.model.config;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
import com.thoughtworks.xstream.annotations.XStreamAlias;
/**
* Java class for documentStandardAttribute.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="documentStandardAttribute">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CREATED"/>
* <enumeration value="CREATED_BY"/>
* <enumeration value="UPDATED"/>
* <enumeration value="UPDATED_BY"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "documentStandardAttribute")
@XmlEnum
@XStreamAlias("documentStandardAttribute")
@Generated(value = "XJC hudson-jaxb-ri-2.1-2", date = "2011-12-06T19:15:37")
public enum DocumentStandardAttributeDTO {
CREATED,
CREATED_BY,
UPDATED,
UPDATED_BY;
public String value() {
return name();
}
public static DocumentStandardAttributeDTO fromValue(String v) {
return valueOf(v);
}
}