Class AllGT

    • Constructor Summary

      Constructors 
      Constructor Description
      AllGT​(String id, Element[] elements, int min, int max)  
      AllGT​(Element[] elements)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Element findChildElement​(String name)
      Convinience method which will search for the specified element within it's children.
      Element findChildElement​(String localName, URI namespaceURI)  
      Element[] getElements()
      The list of elements represented within this 'all' declaration.
      int getGrouping()
      Returns the mask informing the caller as to the type of object they are dealing with.
      String getId()
      Returns the element declaration's id for this schema element.
      int getMaxOccurs()
      returns the max number of allowable occurences within the xml schema for this construct.
      int getMinOccurs()
      returns the min number of allowable occurences within the xml schema for this construct.
      • Methods inherited from class Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AllGT

        public AllGT​(Element[] elements)
      • AllGT

        public AllGT​(String id,
                     Element[] elements,
                     int min,
                     int max)
    • Method Detail

      • getElements

        public Element[] getElements()
        Description copied from interface: All
        The list of elements represented within this 'all' declaration. We should not that as per the Schema definition of the 'all' declaration, the return order in the array should not have an effect on the instance document.
        Specified by:
        getElements in interface All
      • getId

        public String getId()
        Description copied from interface: All
        Returns the element declaration's id for this schema element.
        Specified by:
        getId in interface All
      • getMaxOccurs

        public int getMaxOccurs()
        Description copied from interface: ElementGrouping
        returns the max number of allowable occurences within the xml schema for this construct.
        Specified by:
        getMaxOccurs in interface All
        Specified by:
        getMaxOccurs in interface ElementGrouping
        See Also:
        org.geotools.xml.xsi.ElementGrouping#getMaxOccurs()
      • getMinOccurs

        public int getMinOccurs()
        Description copied from interface: ElementGrouping
        returns the min number of allowable occurences within the xml schema for this construct.
        Specified by:
        getMinOccurs in interface All
        Specified by:
        getMinOccurs in interface ElementGrouping
        See Also:
        org.geotools.xml.xsi.ElementGrouping#getMinOccurs()
      • getGrouping

        public int getGrouping()
        Description copied from interface: ElementGrouping
        Returns the mask informing the caller as to the type of object they are dealing with.
        Specified by:
        getGrouping in interface ElementGrouping
      • findChildElement

        public Element findChildElement​(String name)
        Description copied from interface: ElementGrouping
        Convinience method which will search for the specified element within it's children. This is typically implemented recursively, and as such may be expensive to execute (so don't call me too much if you want to be fast).
        Specified by:
        findChildElement in interface ElementGrouping
        Parameters:
        name - The Element LocalName (namespace and prefix should not be included)
        Returns:
        Element or null if not found.