public class ChargeBand extends Object
Java class for ChargeBand complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ChargeBand">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="chargeCurrency" type="{http://datex2.eu/schema/2/2_0}CurrencyEnum"/>
<element name="maximumDuration" type="{http://datex2.eu/schema/2/2_0}Seconds" minOccurs="0"/>
<element name="chargeBandName" type="{http://datex2.eu/schema/2/2_0}MultilingualString" minOccurs="0"/>
<element name="applicableForUser" type="{http://datex2.eu/schema/2/2_0}UserTypeEnum" maxOccurs="unbounded" minOccurs="0"/>
<element name="charge" type="{http://datex2.eu/schema/2/2_0}Charge" maxOccurs="unbounded"/>
<element name="applicableForPeriod" type="{http://datex2.eu/schema/2/2_0}OverallPeriod" minOccurs="0"/>
<element name="applicableForVehicles" type="{http://datex2.eu/schema/2/2_0}VehicleCharacteristics" maxOccurs="unbounded" minOccurs="0"/>
<element name="parkingPermit" type="{http://datex2.eu/schema/2/2_0}ParkingPermit" maxOccurs="unbounded" minOccurs="0"/>
<element name="chargeBandExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
</sequence>
<attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected OverallPeriod |
applicableForPeriod |
protected List<UserTypeEnum> |
applicableForUser |
protected List<VehicleCharacteristics> |
applicableForVehicles |
protected List<Charge> |
charge |
protected ExtensionType |
chargeBandExtension |
protected MultilingualString |
chargeBandName |
protected CurrencyEnum |
chargeCurrency |
protected String |
id |
protected Float |
maximumDuration |
protected List<ParkingPermit> |
parkingPermit |
protected String |
version |
| Constructor and Description |
|---|
ChargeBand() |
| Modifier and Type | Method and Description |
|---|---|
OverallPeriod |
getApplicableForPeriod()
Gets the value of the applicableForPeriod property.
|
List<UserTypeEnum> |
getApplicableForUser()
Gets the value of the applicableForUser property.
|
List<VehicleCharacteristics> |
getApplicableForVehicles()
Gets the value of the applicableForVehicles property.
|
List<Charge> |
getCharge()
Gets the value of the charge property.
|
ExtensionType |
getChargeBandExtension()
Gets the value of the chargeBandExtension property.
|
MultilingualString |
getChargeBandName()
Gets the value of the chargeBandName property.
|
CurrencyEnum |
getChargeCurrency()
Gets the value of the chargeCurrency property.
|
String |
getId()
Gets the value of the id property.
|
Float |
getMaximumDuration()
Gets the value of the maximumDuration property.
|
List<ParkingPermit> |
getParkingPermit()
Gets the value of the parkingPermit property.
|
String |
getVersion()
Gets the value of the version property.
|
void |
setApplicableForPeriod(OverallPeriod value)
Sets the value of the applicableForPeriod property.
|
void |
setChargeBandExtension(ExtensionType value)
Sets the value of the chargeBandExtension property.
|
void |
setChargeBandName(MultilingualString value)
Sets the value of the chargeBandName property.
|
void |
setChargeCurrency(CurrencyEnum value)
Sets the value of the chargeCurrency property.
|
void |
setId(String value)
Sets the value of the id property.
|
void |
setMaximumDuration(Float value)
Sets the value of the maximumDuration property.
|
void |
setVersion(String value)
Sets the value of the version property.
|
protected CurrencyEnum chargeCurrency
protected Float maximumDuration
protected MultilingualString chargeBandName
protected List<UserTypeEnum> applicableForUser
protected OverallPeriod applicableForPeriod
protected List<VehicleCharacteristics> applicableForVehicles
protected List<ParkingPermit> parkingPermit
protected ExtensionType chargeBandExtension
protected String id
protected String version
public CurrencyEnum getChargeCurrency()
CurrencyEnumpublic void setChargeCurrency(CurrencyEnum value)
value - allowed object is
CurrencyEnumpublic Float getMaximumDuration()
Floatpublic void setMaximumDuration(Float value)
value - allowed object is
Floatpublic MultilingualString getChargeBandName()
MultilingualStringpublic void setChargeBandName(MultilingualString value)
value - allowed object is
MultilingualStringpublic List<UserTypeEnum> getApplicableForUser()
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 applicableForUser property.
For example, to add a new item, do as follows:
getApplicableForUser().add(newItem);
Objects of the following type(s) are allowed in the list
UserTypeEnum
public List<Charge> getCharge()
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 charge property.
For example, to add a new item, do as follows:
getCharge().add(newItem);
Objects of the following type(s) are allowed in the list
Charge
public OverallPeriod getApplicableForPeriod()
OverallPeriodpublic void setApplicableForPeriod(OverallPeriod value)
value - allowed object is
OverallPeriodpublic List<VehicleCharacteristics> getApplicableForVehicles()
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 applicableForVehicles property.
For example, to add a new item, do as follows:
getApplicableForVehicles().add(newItem);
Objects of the following type(s) are allowed in the list
VehicleCharacteristics
public List<ParkingPermit> getParkingPermit()
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 parkingPermit property.
For example, to add a new item, do as follows:
getParkingPermit().add(newItem);
Objects of the following type(s) are allowed in the list
ParkingPermit
public ExtensionType getChargeBandExtension()
ExtensionTypepublic void setChargeBandExtension(ExtensionType value)
value - allowed object is
ExtensionTypepublic void setId(String value)
value - allowed object is
Stringpublic String getVersion()
StringCopyright © 2014–2015 Centrum dopravního výzkumu, v.v.i.. All rights reserved.