Class StateChangeType

  • All Implemented Interfaces:
    com.helger.commons.lang.IExplicitlyCloneable, Serializable, Cloneable

    @CodingStyleguideUnaware
    public class StateChangeType
    extends Object
    implements Serializable, com.helger.commons.lang.IExplicitlyCloneable

    Java class for StateChangeType complex type.

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

     <complexType name="StateChangeType">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element ref="{http://www.openapplications.org/oagis/9}FromStateCode" minOccurs="0"/>
             <element ref="{http://www.openapplications.org/oagis/9}ToStateCode" minOccurs="0"/>
             <element ref="{http://www.openapplications.org/oagis/9}ChangeDateTime" minOccurs="0"/>
             <group ref="{http://www.openapplications.org/oagis/9}FreeFormTextGroup" minOccurs="0"/>
             <element ref="{http://www.openapplications.org/oagis/9}UserArea" minOccurs="0"/>
           </sequence>
         </restriction>
       </complexContent>
     </complexType>
     

    This class was annotated by ph-jaxb22-plugin -Xph-annotate

    This class contains methods created by ph-jaxb22-plugin -Xph-equalshashcode

    This class contains methods created by ph-jaxb22-plugin -Xph-tostring

    This class contains methods created by ph-jaxb22-plugin -Xph-list-extension

    This class contains methods created by ph-jaxb22-plugin -Xph-cloneable2

    This class contains methods created by ph-jaxb22-plugin -Xph-value-extender

    See Also:
    Serialized Form
    • Constructor Detail

      • StateChangeType

        public StateChangeType()
        Default constructor
        Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
    • Method Detail

      • setFromStateCode

        public void setFromStateCode​(@Nullable
                                     StateCodeType value)
        Sets the value of the fromStateCode property.
        Parameters:
        value - allowed object is StateCodeType
      • setToStateCode

        public void setToStateCode​(@Nullable
                                   StateCodeType value)
        Sets the value of the toStateCode property.
        Parameters:
        value - allowed object is StateCodeType
      • getChangeDateTime

        @Nullable
        public String getChangeDateTime()
        Gets the value of the changeDateTime property.
        Returns:
        possible object is String
      • setChangeDateTime

        public void setChangeDateTime​(@Nullable
                                      String value)
        Sets the value of the changeDateTime property.
        Parameters:
        value - allowed object is String
      • getDescription

        @Nonnull
        @ReturnsMutableObject("JAXB implementation style")
        public List<DescriptionType> getDescription()
        Gets the value of the description 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 description property.

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

            getDescription().add(newItem);
         

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

      • getNote

        @Nonnull
        @ReturnsMutableObject("JAXB implementation style")
        public List<NoteType> getNote()
        Gets the value of the note 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 note property.

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

            getNote().add(newItem);
         

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

      • setUserArea

        public void setUserArea​(@Nullable
                                UserAreaType value)
        Sets the value of the userArea property.
        Parameters:
        value - allowed object is UserAreaType
      • equals

        public boolean equals​(Object o)
        Created by ph-jaxb22-plugin -Xph-equalshashcode
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Created by ph-jaxb22-plugin -Xph-equalshashcode
        Overrides:
        hashCode in class Object
      • toString

        public String toString()
        Created by ph-jaxb22-plugin -Xph-tostring
        Overrides:
        toString in class Object
      • setDescription

        public void setDescription​(@Nullable
                                   List<DescriptionType> aList)
        Created by ph-jaxb22-plugin -Xph-list-extension
        Parameters:
        aList - The new list member to set. May be null.
      • setNote

        public void setNote​(@Nullable
                            List<NoteType> aList)
        Created by ph-jaxb22-plugin -Xph-list-extension
        Parameters:
        aList - The new list member to set. May be null.
      • hasDescriptionEntries

        public boolean hasDescriptionEntries()
        Created by ph-jaxb22-plugin -Xph-list-extension
        Returns:
        true if at least one item is contained, false otherwise.
      • hasNoDescriptionEntries

        public boolean hasNoDescriptionEntries()
        Created by ph-jaxb22-plugin -Xph-list-extension
        Returns:
        true if no item is contained, false otherwise.
      • getDescriptionCount

        @Nonnegative
        public int getDescriptionCount()
        Created by ph-jaxb22-plugin -Xph-list-extension
        Returns:
        The number of contained elements. Always ≥ 0.
      • addDescription

        public void addDescription​(@Nonnull
                                   DescriptionType elem)
        Created by ph-jaxb22-plugin -Xph-list-extension
        Parameters:
        elem - The element to be added. May not be null.
      • hasNoteEntries

        public boolean hasNoteEntries()
        Created by ph-jaxb22-plugin -Xph-list-extension
        Returns:
        true if at least one item is contained, false otherwise.
      • hasNoNoteEntries

        public boolean hasNoNoteEntries()
        Created by ph-jaxb22-plugin -Xph-list-extension
        Returns:
        true if no item is contained, false otherwise.
      • getNoteCount

        @Nonnegative
        public int getNoteCount()
        Created by ph-jaxb22-plugin -Xph-list-extension
        Returns:
        The number of contained elements. Always ≥ 0.
      • addNote

        public void addNote​(@Nonnull
                            NoteType elem)
        Created by ph-jaxb22-plugin -Xph-list-extension
        Parameters:
        elem - The element to be added. May not be null.
      • cloneTo

        public void cloneTo​(@Nonnull
                            StateChangeType ret)
        This method clones all values from this to the passed object. All data in the parameter object is overwritten!Created by ph-jaxb22-plugin -Xph-cloneable2
        Parameters:
        ret - The target object to clone to. May not be null.
      • clone

        @Nonnull
        @ReturnsMutableCopy
        public StateChangeType clone()
        Created by ph-jaxb22-plugin -Xph-cloneable2
        Specified by:
        clone in interface com.helger.commons.lang.IExplicitlyCloneable
        Overrides:
        clone in class Object
        Returns:
        The cloned object. Never null.
      • setFromStateCode

        @Nonnull
        public StateCodeType setFromStateCode​(@Nullable
                                              String valueParam)
        Special setter with value of type String
        Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
        Parameters:
        valueParam - The value to be set. May be null.
        Returns:
        The created intermediary object of type StateCodeType and never null
      • setToStateCode

        @Nonnull
        public StateCodeType setToStateCode​(@Nullable
                                            String valueParam)
        Special setter with value of type String
        Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
        Parameters:
        valueParam - The value to be set. May be null.
        Returns:
        The created intermediary object of type StateCodeType and never null
      • getFromStateCodeValue

        @Nullable
        public String getFromStateCodeValue()
        Get the value of the contained StateCodeType object
        Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
        Returns:
        Either the value of the contained StateCodeType object or null
      • getToStateCodeValue

        @Nullable
        public String getToStateCodeValue()
        Get the value of the contained StateCodeType object
        Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
        Returns:
        Either the value of the contained StateCodeType object or null