Package uk.org.siri.siri20
Class ParametersIgnoredErrorStructure
- java.lang.Object
-
- uk.org.siri.siri20.ErrorCodeStructure
-
- uk.org.siri.siri20.ParametersIgnoredErrorStructure
-
- All Implemented Interfaces:
Serializable
public class ParametersIgnoredErrorStructure extends ErrorCodeStructure implements Serializable
Type for Parameters Ignored Error:. +SIRI v2.0.Java class for ParametersIgnoredErrorStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ParametersIgnoredErrorStructure"> <complexContent> <extension base="{http://www.siri.org.uk/siri}ErrorCodeStructure"> <sequence> <element name="ParameterName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>parameterNames-
Fields inherited from class uk.org.siri.siri20.ErrorCodeStructure
errorText, number
-
-
Constructor Summary
Constructors Constructor Description ParametersIgnoredErrorStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getParameterNames()Gets the value of the parameterNames property.-
Methods inherited from class uk.org.siri.siri20.ErrorCodeStructure
getErrorText, getNumber, setErrorText, setNumber
-
-
-
-
Method Detail
-
getParameterNames
public List<String> getParameterNames()
Gets the value of the parameterNames 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
setmethod for the parameterNames property.For example, to add a new item, do as follows:
getParameterNames().add(newItem);Objects of the following type(s) are allowed in the list
String
-
-