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

energyml.prodml2_0.FiberFacilityMappingPart Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.13 at 08:02:05 PM UTC 
//


package energyml.prodml2_0;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.LengthMeasure;


/**
 * Relates distances measured along the optical path to specific lengths along facilities (wellbores or pipelines).
 * 
 * 

Java class for FiberFacilityMappingPart complex type. * *

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

 * <complexType name="FiberFacilityMappingPart">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Comment" type="energyml.common2_1.String2000" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="FacilityLengthEnd" type="energyml.common2_1.LengthMeasure"/>
 *         <element name="FacilityLengthStart" type="energyml.common2_1.LengthMeasure"/>
 *         <element name="OpticalPathDistanceEnd" type="energyml.common2_1.LengthMeasure"/>
 *         <element name="OpticalPathDistanceStart" type="energyml.common2_1.LengthMeasure"/>
 *         <element name="FiberFacility" type="energyml.prodml2_0.AbstractFiberFacility"/>
 *       </sequence>
 *       <attribute name="uid" use="required" type="energyml.common2_1.String64" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FiberFacilityMappingPart", propOrder = { "comment", "facilityLengthEnd", "facilityLengthStart", "opticalPathDistanceEnd", "opticalPathDistanceStart", "fiberFacility" }) public class FiberFacilityMappingPart { @XmlElement(name = "Comment") protected List comment; @XmlElement(name = "FacilityLengthEnd", required = true) protected LengthMeasure facilityLengthEnd; @XmlElement(name = "FacilityLengthStart", required = true) protected LengthMeasure facilityLengthStart; @XmlElement(name = "OpticalPathDistanceEnd", required = true) protected LengthMeasure opticalPathDistanceEnd; @XmlElement(name = "OpticalPathDistanceStart", required = true) protected LengthMeasure opticalPathDistanceStart; @XmlElement(name = "FiberFacility", required = true) protected AbstractFiberFacility fiberFacility; @XmlAttribute(name = "uid", required = true) protected String uid; /** * Gets the value of the comment 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 Jakarta XML Binding object. * This is why there is not a set method for the comment property. * *

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

     *    getComment().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getComment() { if (comment == null) { comment = new ArrayList(); } return this.comment; } /** * Gets the value of the facilityLengthEnd property. * * @return * possible object is * {@link LengthMeasure } * */ public LengthMeasure getFacilityLengthEnd() { return facilityLengthEnd; } /** * Sets the value of the facilityLengthEnd property. * * @param value * allowed object is * {@link LengthMeasure } * */ public void setFacilityLengthEnd(LengthMeasure value) { this.facilityLengthEnd = value; } /** * Gets the value of the facilityLengthStart property. * * @return * possible object is * {@link LengthMeasure } * */ public LengthMeasure getFacilityLengthStart() { return facilityLengthStart; } /** * Sets the value of the facilityLengthStart property. * * @param value * allowed object is * {@link LengthMeasure } * */ public void setFacilityLengthStart(LengthMeasure value) { this.facilityLengthStart = value; } /** * Gets the value of the opticalPathDistanceEnd property. * * @return * possible object is * {@link LengthMeasure } * */ public LengthMeasure getOpticalPathDistanceEnd() { return opticalPathDistanceEnd; } /** * Sets the value of the opticalPathDistanceEnd property. * * @param value * allowed object is * {@link LengthMeasure } * */ public void setOpticalPathDistanceEnd(LengthMeasure value) { this.opticalPathDistanceEnd = value; } /** * Gets the value of the opticalPathDistanceStart property. * * @return * possible object is * {@link LengthMeasure } * */ public LengthMeasure getOpticalPathDistanceStart() { return opticalPathDistanceStart; } /** * Sets the value of the opticalPathDistanceStart property. * * @param value * allowed object is * {@link LengthMeasure } * */ public void setOpticalPathDistanceStart(LengthMeasure value) { this.opticalPathDistanceStart = value; } /** * Gets the value of the fiberFacility property. * * @return * possible object is * {@link AbstractFiberFacility } * */ public AbstractFiberFacility getFiberFacility() { return fiberFacility; } /** * Sets the value of the fiberFacility property. * * @param value * allowed object is * {@link AbstractFiberFacility } * */ public void setFiberFacility(AbstractFiberFacility value) { this.fiberFacility = value; } /** * Gets the value of the uid property. * * @return * possible object is * {@link String } * */ public String getUid() { return uid; } /** * Sets the value of the uid property. * * @param value * allowed object is * {@link String } * */ public void setUid(String value) { this.uid = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy