![JAR search and dependency download from the Maven repository](/logo.png)
org.jasig.resource.aggr.om.Included Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-aggregator-api Show documentation
Show all versions of resource-aggregator-api Show documentation
API and object model for the Resource Aggregator project.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.09.24 at 12:43:26 PM CDT
//
package org.jasig.resource.aggr.om;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for included.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="included">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="both"/>
* <enumeration value="aggregated"/>
* <enumeration value="plain"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "included")
@XmlEnum
public enum Included {
/**
* Include the resource when using both aggregated and plain resources
*
*/
@XmlEnumValue("both")
BOTH("both"),
/**
* Only include the resource when using aggregated resources
*
*/
@XmlEnumValue("aggregated")
AGGREGATED("aggregated"),
/**
* Only include the resource when using plain resources
*
*/
@XmlEnumValue("plain")
PLAIN("plain");
private final String value;
Included(String v) {
value = v;
}
public String value() {
return value;
}
public static Included fromValue(String v) {
for (Included c: Included.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy