net.opengis.swes.v_2_0
Class AbstractOfferingType

java.lang.Object
  extended by net.opengis.swes.v_2_0.AbstractSWESType
      extended by net.opengis.swes.v_2_0.AbstractOfferingType
All Implemented Interfaces:
Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo, org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.MergeFrom, org.jvnet.jaxb2_commons.lang.ToString

public abstract class AbstractOfferingType
extends AbstractSWESType
implements Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo, org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.MergeFrom, org.jvnet.jaxb2_commons.lang.ToString

Java class for AbstractOfferingType complex type.

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

 <complexType name="AbstractOfferingType">
   <complexContent>
     <extension base="{http://www.opengis.net/swes/2.0}AbstractSWESType">
       <sequence>
         <element name="procedure" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
         <element name="procedureDescriptionFormat" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
         <element name="observableProperty" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded" minOccurs="0"/>
         <element name="relatedFeature" maxOccurs="unbounded" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence>
                   <element ref="{http://www.opengis.net/swes/2.0}FeatureRelationship"/>
                 </sequence>
               </restriction>
             </complexContent>
           </complexType>
         </element>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 


Nested Class Summary
static class AbstractOfferingType.RelatedFeature
          Java class for anonymous complex type.
 
Field Summary
protected  List<String> observableProperty
           
protected  String procedure
           
protected  List<String> procedureDescriptionFormat
           
protected  List<AbstractOfferingType.RelatedFeature> relatedFeature
           
 
Fields inherited from class net.opengis.swes.v_2_0.AbstractSWESType
description, extension, id, identifier, name
 
Constructor Summary
AbstractOfferingType()
           
 
Method Summary
 StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
           
 StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
           
 Object clone()
           
 Object copyTo(Object target)
           
 Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy strategy)
           
 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.EqualsStrategy strategy)
           
 List<String> getObservableProperty()
          Gets the value of the observableProperty property.
 String getProcedure()
          Gets the value of the procedure property.
 List<String> getProcedureDescriptionFormat()
          Gets the value of the procedureDescriptionFormat property.
 List<AbstractOfferingType.RelatedFeature> getRelatedFeature()
          Gets the value of the relatedFeature property.
 int hashCode()
           
 int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
           
 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.MergeStrategy strategy)
           
 void mergeFrom(Object left, Object right)
           
 void setObservableProperty(List<String> value)
           
 void setProcedure(String value)
          Sets the value of the procedure property.
 void setProcedureDescriptionFormat(List<String> value)
           
 void setRelatedFeature(List<AbstractOfferingType.RelatedFeature> value)
           
 String toString()
           
 AbstractOfferingType withDescription(String value)
           
 AbstractOfferingType withExtension(Collection<Object> values)
           
 AbstractOfferingType withExtension(List<Object> value)
           
 AbstractOfferingType withExtension(Object... values)
           
 AbstractOfferingType withId(String value)
           
 AbstractOfferingType withIdentifier(String value)
           
 AbstractOfferingType withName(CodeType... values)
           
 AbstractOfferingType withName(Collection<CodeType> values)
           
 AbstractOfferingType withName(List<CodeType> value)
           
 AbstractOfferingType withObservableProperty(Collection<String> values)
           
 AbstractOfferingType withObservableProperty(List<String> value)
           
 AbstractOfferingType withObservableProperty(String... values)
           
 AbstractOfferingType withProcedure(String value)
           
 AbstractOfferingType withProcedureDescriptionFormat(Collection<String> values)
           
 AbstractOfferingType withProcedureDescriptionFormat(List<String> value)
           
 AbstractOfferingType withProcedureDescriptionFormat(String... values)
           
 AbstractOfferingType withRelatedFeature(AbstractOfferingType.RelatedFeature... values)
           
 AbstractOfferingType withRelatedFeature(Collection<AbstractOfferingType.RelatedFeature> values)
           
 AbstractOfferingType withRelatedFeature(List<AbstractOfferingType.RelatedFeature> value)
           
 
Methods inherited from class net.opengis.swes.v_2_0.AbstractSWESType
getDescription, getExtension, getId, getIdentifier, getName, setDescription, setExtension, setId, setIdentifier, setName
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.jvnet.jaxb2_commons.lang.CopyTo
createNewInstance
 
Methods inherited from interface org.jvnet.jaxb2_commons.lang.MergeFrom
createNewInstance
 

Field Detail

procedure

protected String procedure

procedureDescriptionFormat

protected List<String> procedureDescriptionFormat

observableProperty

protected List<String> observableProperty

relatedFeature

protected List<AbstractOfferingType.RelatedFeature> relatedFeature
Constructor Detail

AbstractOfferingType

public AbstractOfferingType()
Method Detail

getProcedure

public String getProcedure()
Gets the value of the procedure property.

Returns:
possible object is String

setProcedure

public void setProcedure(String value)
Sets the value of the procedure property.

Parameters:
value - allowed object is String

getProcedureDescriptionFormat

public List<String> getProcedureDescriptionFormat()
Gets the value of the procedureDescriptionFormat 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 procedureDescriptionFormat property.

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

    getProcedureDescriptionFormat().add(newItem);
 

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


getObservableProperty

public List<String> getObservableProperty()
Gets the value of the observableProperty 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 observableProperty property.

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

    getObservableProperty().add(newItem);
 

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


getRelatedFeature

public List<AbstractOfferingType.RelatedFeature> getRelatedFeature()
Gets the value of the relatedFeature 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 relatedFeature property.

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

    getRelatedFeature().add(newItem);
 

Objects of the following type(s) are allowed in the list AbstractOfferingType.RelatedFeature


toString

public String toString()
Overrides:
toString in class AbstractSWESType

append

public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                            StringBuilder buffer,
                            org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
Specified by:
append in interface org.jvnet.jaxb2_commons.lang.ToString
Overrides:
append in class AbstractSWESType

appendFields

public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                                  StringBuilder buffer,
                                  org.jvnet.jaxb2_commons.lang.ToStringStrategy strategy)
Specified by:
appendFields in interface org.jvnet.jaxb2_commons.lang.ToString
Overrides:
appendFields in class AbstractSWESType

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.EqualsStrategy strategy)
Specified by:
equals in interface org.jvnet.jaxb2_commons.lang.Equals
Overrides:
equals in class AbstractSWESType

equals

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

hashCode

public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                    org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
Specified by:
hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode
Overrides:
hashCode in class AbstractSWESType

hashCode

public int hashCode()
Overrides:
hashCode in class AbstractSWESType

clone

public Object clone()
Overrides:
clone in class AbstractSWESType

copyTo

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

copyTo

public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
                     Object target,
                     org.jvnet.jaxb2_commons.lang.CopyStrategy strategy)
Specified by:
copyTo in interface org.jvnet.jaxb2_commons.lang.CopyTo
Overrides:
copyTo in class AbstractSWESType

mergeFrom

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

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.MergeStrategy strategy)
Specified by:
mergeFrom in interface org.jvnet.jaxb2_commons.lang.MergeFrom
Overrides:
mergeFrom in class AbstractSWESType

setProcedureDescriptionFormat

public void setProcedureDescriptionFormat(List<String> value)

setObservableProperty

public void setObservableProperty(List<String> value)

setRelatedFeature

public void setRelatedFeature(List<AbstractOfferingType.RelatedFeature> value)

withProcedure

public AbstractOfferingType withProcedure(String value)

withProcedureDescriptionFormat

public AbstractOfferingType withProcedureDescriptionFormat(String... values)

withProcedureDescriptionFormat

public AbstractOfferingType withProcedureDescriptionFormat(Collection<String> values)

withObservableProperty

public AbstractOfferingType withObservableProperty(String... values)

withObservableProperty

public AbstractOfferingType withObservableProperty(Collection<String> values)

withRelatedFeature

public AbstractOfferingType withRelatedFeature(AbstractOfferingType.RelatedFeature... values)

withRelatedFeature

public AbstractOfferingType withRelatedFeature(Collection<AbstractOfferingType.RelatedFeature> values)

withProcedureDescriptionFormat

public AbstractOfferingType withProcedureDescriptionFormat(List<String> value)

withObservableProperty

public AbstractOfferingType withObservableProperty(List<String> value)

withRelatedFeature

public AbstractOfferingType withRelatedFeature(List<AbstractOfferingType.RelatedFeature> value)

withDescription

public AbstractOfferingType withDescription(String value)
Overrides:
withDescription in class AbstractSWESType

withIdentifier

public AbstractOfferingType withIdentifier(String value)
Overrides:
withIdentifier in class AbstractSWESType

withName

public AbstractOfferingType withName(CodeType... values)
Overrides:
withName in class AbstractSWESType

withName

public AbstractOfferingType withName(Collection<CodeType> values)
Overrides:
withName in class AbstractSWESType

withExtension

public AbstractOfferingType withExtension(Object... values)
Overrides:
withExtension in class AbstractSWESType

withExtension

public AbstractOfferingType withExtension(Collection<Object> values)
Overrides:
withExtension in class AbstractSWESType

withId

public AbstractOfferingType withId(String value)
Overrides:
withId in class AbstractSWESType

withName

public AbstractOfferingType withName(List<CodeType> value)
Overrides:
withName in class AbstractSWESType

withExtension

public AbstractOfferingType withExtension(List<Object> value)
Overrides:
withExtension in class AbstractSWESType


Copyright © 2008-2015. All Rights Reserved.