net.opengis.ols.v_1_2
Class RouteInstructionsListType

java.lang.Object
  extended by net.opengis.ols.v_1_2.AbstractDataType
      extended by net.opengis.ols.v_1_2.RouteInstructionsListType
All Implemented Interfaces:
Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo2, org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.MergeFrom2, org.jvnet.jaxb2_commons.lang.ToString2

public class RouteInstructionsListType
extends AbstractDataType
implements Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo2, org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.MergeFrom2, org.jvnet.jaxb2_commons.lang.ToString2

Defines a list of route instructions.

Java class for RouteInstructionsListType complex type.

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

 <complexType name="RouteInstructionsListType">
   <complexContent>
     <extension base="{http://www.opengis.net/xls}AbstractDataType">
       <sequence>
         <element ref="{http://www.opengis.net/xls}RouteInstruction" maxOccurs="unbounded"/>
       </sequence>
       <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" default="text/plain" />
       <attribute ref="{http://www.opengis.net/xls}lang use="required""/>
     </extension>
   </complexContent>
 </complexType>
 


Field Summary
protected  String format
           
protected  String lang
           
protected  List<RouteInstructionType> routeInstruction
           
 
Constructor Summary
RouteInstructionsListType()
           
 
Method Summary
 StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
           
 StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
           
 Object clone()
           
 Object copyTo(Object target)
           
 Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)
           
 Object createNewInstance()
           
 boolean equals(Object object)
           
 boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy2 strategy)
           
 String getFormat()
          Gets the value of the format property.
 String getLang()
          Specifies the language in which the instructions are given.
 List<RouteInstructionType> getRouteInstruction()
          Gets the value of the routeInstruction property.
 int hashCode()
           
 int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
           
 boolean isSetFormat()
           
 boolean isSetLang()
           
 boolean isSetRouteInstruction()
           
 void mergeFrom(org.jvnet.jaxb2_commons.locator.ObjectLocator leftLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator rightLocator, Object left, Object right, org.jvnet.jaxb2_commons.lang.MergeStrategy2 strategy)
           
 void mergeFrom(Object left, Object right)
           
 void setFormat(String value)
          Sets the value of the format property.
 void setLang(String value)
          Sets the value of the lang property.
 void setRouteInstruction(List<RouteInstructionType> value)
           
 String toString()
           
 void unsetRouteInstruction()
           
 RouteInstructionsListType withFormat(String value)
           
 RouteInstructionsListType withLang(String value)
           
 RouteInstructionsListType withRouteInstruction(Collection<RouteInstructionType> values)
           
 RouteInstructionsListType withRouteInstruction(List<RouteInstructionType> value)
           
 RouteInstructionsListType withRouteInstruction(RouteInstructionType... values)
           
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

routeInstruction

protected List<RouteInstructionType> routeInstruction

format

protected String format

lang

protected String lang
Constructor Detail

RouteInstructionsListType

public RouteInstructionsListType()
Method Detail

getRouteInstruction

public List<RouteInstructionType> getRouteInstruction()
Gets the value of the routeInstruction 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 routeInstruction property.

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

    getRouteInstruction().add(newItem);
 

Objects of the following type(s) are allowed in the list RouteInstructionType


isSetRouteInstruction

public boolean isSetRouteInstruction()

unsetRouteInstruction

public void unsetRouteInstruction()

getFormat

public String getFormat()
Gets the value of the format property.

Returns:
possible object is String

setFormat

public void setFormat(String value)
Sets the value of the format property.

Parameters:
value - allowed object is String

isSetFormat

public boolean isSetFormat()

getLang

public String getLang()
Specifies the language in which the instructions are given.

Returns:
possible object is String

setLang

public void setLang(String value)
Sets the value of the lang property.

Parameters:
value - allowed object is String

isSetLang

public boolean isSetLang()

toString

public String toString()
Overrides:
toString in class AbstractDataType

append

public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                            StringBuilder buffer,
                            org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
Specified by:
append in interface org.jvnet.jaxb2_commons.lang.ToString2
Overrides:
append in class AbstractDataType

appendFields

public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                                  StringBuilder buffer,
                                  org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
Specified by:
appendFields in interface org.jvnet.jaxb2_commons.lang.ToString2
Overrides:
appendFields in class AbstractDataType

equals

public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator,
                      org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator,
                      Object object,
                      org.jvnet.jaxb2_commons.lang.EqualsStrategy2 strategy)
Specified by:
equals in interface org.jvnet.jaxb2_commons.lang.Equals2
Overrides:
equals in class AbstractDataType

equals

public boolean equals(Object object)
Overrides:
equals in class AbstractDataType

hashCode

public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                    org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
Specified by:
hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode2
Overrides:
hashCode in class AbstractDataType

hashCode

public int hashCode()
Overrides:
hashCode in class AbstractDataType

clone

public Object clone()
Overrides:
clone in class AbstractDataType

copyTo

public Object copyTo(Object target)
Specified by:
copyTo in interface org.jvnet.jaxb2_commons.lang.CopyTo2
Overrides:
copyTo in class AbstractDataType

copyTo

public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                     Object target,
                     org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)
Specified by:
copyTo in interface org.jvnet.jaxb2_commons.lang.CopyTo2
Overrides:
copyTo in class AbstractDataType

createNewInstance

public Object createNewInstance()
Specified by:
createNewInstance in interface org.jvnet.jaxb2_commons.lang.CopyTo2
Specified by:
createNewInstance in interface org.jvnet.jaxb2_commons.lang.MergeFrom2
Overrides:
createNewInstance in class AbstractDataType

mergeFrom

public void mergeFrom(Object left,
                      Object right)
Specified by:
mergeFrom in interface org.jvnet.jaxb2_commons.lang.MergeFrom2
Overrides:
mergeFrom in class AbstractDataType

mergeFrom

public void mergeFrom(org.jvnet.jaxb2_commons.locator.ObjectLocator leftLocator,
                      org.jvnet.jaxb2_commons.locator.ObjectLocator rightLocator,
                      Object left,
                      Object right,
                      org.jvnet.jaxb2_commons.lang.MergeStrategy2 strategy)
Specified by:
mergeFrom in interface org.jvnet.jaxb2_commons.lang.MergeFrom2
Overrides:
mergeFrom in class AbstractDataType

setRouteInstruction

public void setRouteInstruction(List<RouteInstructionType> value)

withRouteInstruction

public RouteInstructionsListType withRouteInstruction(RouteInstructionType... values)

withRouteInstruction

public RouteInstructionsListType withRouteInstruction(Collection<RouteInstructionType> values)

withFormat

public RouteInstructionsListType withFormat(String value)

withLang

public RouteInstructionsListType withLang(String value)

withRouteInstruction

public RouteInstructionsListType withRouteInstruction(List<RouteInstructionType> value)


Copyright © 2008-2016. All Rights Reserved.