![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.ifopt.siri20.CheckPointStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
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:39 PM UTC
//
package uk.org.ifopt.siri20;
import java.io.Serializable;
import java.time.Duration;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
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;
import org.entur.siri.adapter.DurationXmlAdapter;
/**
* Type for a CHECK CONSTRAINT Hazard that can be associated with.
*
* Java class for CheckPointStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CheckPointStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CheckPointId" type="{http://www.ifopt.org.uk/ifopt}CheckPointIdType" minOccurs="0"/>
* <group ref="{http://www.ifopt.org.uk/ifopt}CheckPointGroup"/>
* <group ref="{http://www.ifopt.org.uk/ifopt}DelayGroup"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CheckPointStructure", propOrder = {
"checkPointId",
"validityCondition",
"checkPointProcess",
"checkPointService",
"accessFeatureType",
"congestion",
"facilityRef",
"minimumLikelyDelay",
"averageDelay",
"maximumLikelyDelay"
})
public class CheckPointStructure
implements Serializable
{
@XmlElement(name = "CheckPointId")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String checkPointId;
@XmlElement(name = "ValidityCondition")
protected ValidityConditionStructure validityCondition;
@XmlElement(name = "CheckPointProcess")
@XmlSchemaType(name = "string")
protected CheckPointProcessEnumeration checkPointProcess;
@XmlElement(name = "CheckPointService")
@XmlSchemaType(name = "string")
protected CheckPointServiceEnumeration checkPointService;
@XmlElement(name = "AccessFeatureType")
@XmlSchemaType(name = "string")
protected AccessibilityFeatureEnumeration accessFeatureType;
@XmlElement(name = "Congestion")
@XmlSchemaType(name = "string")
protected CongestionEnumeration congestion;
@XmlElement(name = "FacilityRef")
protected String facilityRef;
@XmlElement(name = "MinimumLikelyDelay", type = String.class)
@XmlJavaTypeAdapter(DurationXmlAdapter.class)
@XmlSchemaType(name = "duration")
protected Duration minimumLikelyDelay;
@XmlElement(name = "AverageDelay", type = String.class)
@XmlJavaTypeAdapter(DurationXmlAdapter.class)
@XmlSchemaType(name = "duration")
protected Duration averageDelay;
@XmlElement(name = "MaximumLikelyDelay", type = String.class)
@XmlJavaTypeAdapter(DurationXmlAdapter.class)
@XmlSchemaType(name = "duration")
protected Duration maximumLikelyDelay;
/**
* Gets the value of the checkPointId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCheckPointId() {
return checkPointId;
}
/**
* Sets the value of the checkPointId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCheckPointId(String value) {
this.checkPointId = value;
}
/**
* Gets the value of the validityCondition property.
*
* @return
* possible object is
* {@link ValidityConditionStructure }
*
*/
public ValidityConditionStructure getValidityCondition() {
return validityCondition;
}
/**
* Sets the value of the validityCondition property.
*
* @param value
* allowed object is
* {@link ValidityConditionStructure }
*
*/
public void setValidityCondition(ValidityConditionStructure value) {
this.validityCondition = value;
}
/**
* Gets the value of the checkPointProcess property.
*
* @return
* possible object is
* {@link CheckPointProcessEnumeration }
*
*/
public CheckPointProcessEnumeration getCheckPointProcess() {
return checkPointProcess;
}
/**
* Sets the value of the checkPointProcess property.
*
* @param value
* allowed object is
* {@link CheckPointProcessEnumeration }
*
*/
public void setCheckPointProcess(CheckPointProcessEnumeration value) {
this.checkPointProcess = value;
}
/**
* Gets the value of the checkPointService property.
*
* @return
* possible object is
* {@link CheckPointServiceEnumeration }
*
*/
public CheckPointServiceEnumeration getCheckPointService() {
return checkPointService;
}
/**
* Sets the value of the checkPointService property.
*
* @param value
* allowed object is
* {@link CheckPointServiceEnumeration }
*
*/
public void setCheckPointService(CheckPointServiceEnumeration value) {
this.checkPointService = value;
}
/**
* Gets the value of the accessFeatureType property.
*
* @return
* possible object is
* {@link AccessibilityFeatureEnumeration }
*
*/
public AccessibilityFeatureEnumeration getAccessFeatureType() {
return accessFeatureType;
}
/**
* Sets the value of the accessFeatureType property.
*
* @param value
* allowed object is
* {@link AccessibilityFeatureEnumeration }
*
*/
public void setAccessFeatureType(AccessibilityFeatureEnumeration value) {
this.accessFeatureType = value;
}
/**
* Gets the value of the congestion property.
*
* @return
* possible object is
* {@link CongestionEnumeration }
*
*/
public CongestionEnumeration getCongestion() {
return congestion;
}
/**
* Sets the value of the congestion property.
*
* @param value
* allowed object is
* {@link CongestionEnumeration }
*
*/
public void setCongestion(CongestionEnumeration value) {
this.congestion = value;
}
/**
* Gets the value of the facilityRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFacilityRef() {
return facilityRef;
}
/**
* Sets the value of the facilityRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFacilityRef(String value) {
this.facilityRef = value;
}
/**
* Gets the value of the minimumLikelyDelay property.
*
* @return
* possible object is
* {@link String }
*
*/
public Duration getMinimumLikelyDelay() {
return minimumLikelyDelay;
}
/**
* Sets the value of the minimumLikelyDelay property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMinimumLikelyDelay(Duration value) {
this.minimumLikelyDelay = value;
}
/**
* Gets the value of the averageDelay property.
*
* @return
* possible object is
* {@link String }
*
*/
public Duration getAverageDelay() {
return averageDelay;
}
/**
* Sets the value of the averageDelay property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAverageDelay(Duration value) {
this.averageDelay = value;
}
/**
* Gets the value of the maximumLikelyDelay property.
*
* @return
* possible object is
* {@link String }
*
*/
public Duration getMaximumLikelyDelay() {
return maximumLikelyDelay;
}
/**
* Sets the value of the maximumLikelyDelay property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaximumLikelyDelay(Duration value) {
this.maximumLikelyDelay = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy