All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.org.siri.siri21.ValueSet Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2025.01.07 at 02:19:41 PM UTC 
//


package uk.org.siri.siri21;

import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * Type for a VALUE SET. Used to define open classifications of value types. (since SIRI 2.1)
 * 
 * 

Java class for ValueSetStructure complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ValueSetStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ValueSetCode" type="{http://www.siri.org.uk/siri}ValueSetCodeType"/>
 *         <element name="ClassOfValues" type="{http://www.siri.org.uk/siri}NameOfClassType"/>
 *         <group ref="{http://www.siri.org.uk/siri}ValueSetGroup"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ValueSetStructure", propOrder = { "valueSetCode", "classOfValues", "name", "values" }) @XmlRootElement(name = "ValueSet") public class ValueSet implements Serializable { @XmlElement(name = "ValueSetCode", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String valueSetCode; @XmlElement(name = "ClassOfValues", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "Name") protected String classOfValues; @XmlElement(name = "Name") protected NaturalLanguageStringStructure name; @XmlElement(name = "Values", required = true) protected ValuesStructure values; /** * Gets the value of the valueSetCode property. * * @return * possible object is * {@link String } * */ public String getValueSetCode() { return valueSetCode; } /** * Sets the value of the valueSetCode property. * * @param value * allowed object is * {@link String } * */ public void setValueSetCode(String value) { this.valueSetCode = value; } /** * Gets the value of the classOfValues property. * * @return * possible object is * {@link String } * */ public String getClassOfValues() { return classOfValues; } /** * Sets the value of the classOfValues property. * * @param value * allowed object is * {@link String } * */ public void setClassOfValues(String value) { this.classOfValues = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link NaturalLanguageStringStructure } * */ public NaturalLanguageStringStructure getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link NaturalLanguageStringStructure } * */ public void setName(NaturalLanguageStringStructure value) { this.name = value; } /** * Gets the value of the values property. * * @return * possible object is * {@link ValuesStructure } * */ public ValuesStructure getValues() { return values; } /** * Sets the value of the values property. * * @param value * allowed object is * {@link ValuesStructure } * */ public void setValues(ValuesStructure value) { this.values = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy