org.hudsonci.maven.model.config.MakeModeDTO 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 makeMode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="makeMode">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="NONE"/>
* <enumeration value="DEPENDENCIES"/>
* <enumeration value="DEPENDENTS"/>
* <enumeration value="BOTH"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "makeMode")
@XmlEnum
@XStreamAlias("makeMode")
@Generated(value = "XJC hudson-jaxb-ri-2.1-2", date = "2011-12-06T19:15:37")
public enum MakeModeDTO {
NONE,
DEPENDENCIES,
DEPENDENTS,
BOTH;
public String value() {
return name();
}
public static MakeModeDTO fromValue(String v) {
return valueOf(v);
}
}