Package jaxb
Class SplitNode
- java.lang.Object
-
- jaxb.SplitNode
-
public class SplitNode extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{opentrafficmodels}split" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="node_id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> <attribute name="commodity_id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> <attribute name="link_in" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> <attribute name="start_time" type="{http://www.w3.org/2001/XMLSchema}float" default="0" /> <attribute name="dt" type="{http://www.w3.org/2001/XMLSchema}float" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description SplitNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getCommodityId()
Gets the value of the commodityId property.Float
getDt()
Gets the value of the dt property.long
getLinkIn()
Gets the value of the linkIn property.long
getNodeId()
Gets the value of the nodeId property.List<Split>
getSplit()
Gets the value of the split property.float
getStartTime()
Gets the value of the startTime property.void
setCommodityId(long value)
Sets the value of the commodityId property.void
setDt(Float value)
Sets the value of the dt property.void
setLinkIn(long value)
Sets the value of the linkIn property.void
setNodeId(long value)
Sets the value of the nodeId property.void
setStartTime(Float value)
Sets the value of the startTime property.
-
-
-
Method Detail
-
getSplit
public List<Split> getSplit()
Gets the value of the split 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 split property.For example, to add a new item, do as follows:
getSplit().add(newItem);
Objects of the following type(s) are allowed in the list
Split
-
getNodeId
public long getNodeId()
Gets the value of the nodeId property.
-
setNodeId
public void setNodeId(long value)
Sets the value of the nodeId property.
-
getCommodityId
public long getCommodityId()
Gets the value of the commodityId property.
-
setCommodityId
public void setCommodityId(long value)
Sets the value of the commodityId property.
-
getLinkIn
public long getLinkIn()
Gets the value of the linkIn property.
-
setLinkIn
public void setLinkIn(long value)
Sets the value of the linkIn property.
-
getStartTime
public float getStartTime()
Gets the value of the startTime property.- Returns:
- possible object is
Float
-
setStartTime
public void setStartTime(Float value)
Sets the value of the startTime property.- Parameters:
value
- allowed object isFloat
-
-