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

gov.nasa.arc.pds.xml.generated.DDValueDomain Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.4 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.10 at 07:24:03 AM GMT 
//


package gov.nasa.arc.pds.xml.generated;

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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The DD_Value_Domain class defines an attribute's
 *         permissible values and their constraints.
 * 
 * 

Java class for DD_Value_Domain complex type. * *

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

 * <complexType name="DD_Value_Domain">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="enumeration_flag" type="{http://pds.nasa.gov/pds4/pds/v1}enumeration_flag"/>
 *         <element name="value_data_type" type="{http://pds.nasa.gov/pds4/pds/v1}value_data_type"/>
 *         <element name="formation_rule" type="{http://pds.nasa.gov/pds4/pds/v1}formation_rule" minOccurs="0"/>
 *         <element name="minimum_characters" type="{http://pds.nasa.gov/pds4/pds/v1}minimum_characters" minOccurs="0"/>
 *         <element name="maximum_characters" type="{http://pds.nasa.gov/pds4/pds/v1}maximum_characters" minOccurs="0"/>
 *         <element name="minimum_value" type="{http://pds.nasa.gov/pds4/pds/v1}minimum_value" minOccurs="0"/>
 *         <element name="maximum_value" type="{http://pds.nasa.gov/pds4/pds/v1}maximum_value" minOccurs="0"/>
 *         <element name="pattern" type="{http://pds.nasa.gov/pds4/pds/v1}pattern" minOccurs="0"/>
 *         <element name="unit_of_measure_type" type="{http://pds.nasa.gov/pds4/pds/v1}unit_of_measure_type" minOccurs="0"/>
 *         <element name="specified_unit_id" type="{http://pds.nasa.gov/pds4/pds/v1}specified_unit_id" minOccurs="0"/>
 *         <element name="DD_Permissible_Value" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Permissible_Value" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DD_Value_Domain", propOrder = { "enumerationFlag", "valueDataType", "formationRule", "minimumCharacters", "maximumCharacters", "minimumValue", "maximumValue", "pattern", "unitOfMeasureType", "specifiedUnitId", "ddPermissibleValues" }) public class DDValueDomain { @XmlElement(name = "enumeration_flag") protected boolean enumerationFlag; @XmlElement(name = "value_data_type", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String valueDataType; @XmlElement(name = "formation_rule") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String formationRule; @XmlElement(name = "minimum_characters") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String minimumCharacters; @XmlElement(name = "maximum_characters") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String maximumCharacters; @XmlElement(name = "minimum_value") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String minimumValue; @XmlElement(name = "maximum_value") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String maximumValue; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String pattern; @XmlElement(name = "unit_of_measure_type") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String unitOfMeasureType; @XmlElement(name = "specified_unit_id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String specifiedUnitId; @XmlElement(name = "DD_Permissible_Value") protected List ddPermissibleValues; /** * Gets the value of the enumerationFlag property. * */ public boolean isEnumerationFlag() { return enumerationFlag; } /** * Sets the value of the enumerationFlag property. * */ public void setEnumerationFlag(boolean value) { this.enumerationFlag = value; } /** * Gets the value of the valueDataType property. * * @return * possible object is * {@link String } * */ public String getValueDataType() { return valueDataType; } /** * Sets the value of the valueDataType property. * * @param value * allowed object is * {@link String } * */ public void setValueDataType(String value) { this.valueDataType = value; } /** * Gets the value of the formationRule property. * * @return * possible object is * {@link String } * */ public String getFormationRule() { return formationRule; } /** * Sets the value of the formationRule property. * * @param value * allowed object is * {@link String } * */ public void setFormationRule(String value) { this.formationRule = value; } /** * Gets the value of the minimumCharacters property. * * @return * possible object is * {@link String } * */ public String getMinimumCharacters() { return minimumCharacters; } /** * Sets the value of the minimumCharacters property. * * @param value * allowed object is * {@link String } * */ public void setMinimumCharacters(String value) { this.minimumCharacters = value; } /** * Gets the value of the maximumCharacters property. * * @return * possible object is * {@link String } * */ public String getMaximumCharacters() { return maximumCharacters; } /** * Sets the value of the maximumCharacters property. * * @param value * allowed object is * {@link String } * */ public void setMaximumCharacters(String value) { this.maximumCharacters = value; } /** * Gets the value of the minimumValue property. * * @return * possible object is * {@link String } * */ public String getMinimumValue() { return minimumValue; } /** * Sets the value of the minimumValue property. * * @param value * allowed object is * {@link String } * */ public void setMinimumValue(String value) { this.minimumValue = value; } /** * Gets the value of the maximumValue property. * * @return * possible object is * {@link String } * */ public String getMaximumValue() { return maximumValue; } /** * Sets the value of the maximumValue property. * * @param value * allowed object is * {@link String } * */ public void setMaximumValue(String value) { this.maximumValue = value; } /** * Gets the value of the pattern property. * * @return * possible object is * {@link String } * */ public String getPattern() { return pattern; } /** * Sets the value of the pattern property. * * @param value * allowed object is * {@link String } * */ public void setPattern(String value) { this.pattern = value; } /** * Gets the value of the unitOfMeasureType property. * * @return * possible object is * {@link String } * */ public String getUnitOfMeasureType() { return unitOfMeasureType; } /** * Sets the value of the unitOfMeasureType property. * * @param value * allowed object is * {@link String } * */ public void setUnitOfMeasureType(String value) { this.unitOfMeasureType = value; } /** * Gets the value of the specifiedUnitId property. * * @return * possible object is * {@link String } * */ public String getSpecifiedUnitId() { return specifiedUnitId; } /** * Sets the value of the specifiedUnitId property. * * @param value * allowed object is * {@link String } * */ public void setSpecifiedUnitId(String value) { this.specifiedUnitId = value; } /** * Gets the value of the ddPermissibleValues 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 ddPermissibleValues property. * *

* For example, to add a new item, do as follows: *

     *    getDDPermissibleValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DDPermissibleValue } * * */ public List getDDPermissibleValues() { if (ddPermissibleValues == null) { ddPermissibleValues = new ArrayList(); } return this.ddPermissibleValues; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy