Class FilterClause

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    AndClause, OrClause

    public abstract class FilterClause
    extends java.lang.Object
    implements java.io.Serializable
    <p>Java class for FilterClause complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> &lt;complexType name="FilterClause"&gt; &lt;complexContent&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; &lt;sequence&gt; &lt;element name="clauses" type="{http://flower.com/docs/domain/search}FilterClause" maxOccurs="unbounded"/&gt; &lt;element name="criteria" type="{http://flower.com/docs/domain/search}Criterion" maxOccurs="unbounded"/&gt; &lt;/sequence&gt; &lt;/restriction&gt; &lt;/complexContent&gt; &lt;/complexType&gt; </pre>
    See Also:
    Serialized Form
    • Field Detail

      • criteria

        protected java.util.List<Criterion> criteria
    • Constructor Detail

      • FilterClause

        public FilterClause()
        Default no-arg constructor abc
      • FilterClause

        public FilterClause​(java.util.List<FilterClause> clauses,
                            java.util.List<Criterion> criteria)
        Fully-initialising value constructor
    • Method Detail

      • getClauses

        public java.util.List<FilterClause> getClauses()
        Gets the value of the clauses property. <p> 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 <CODE>set</CODE> method for the clauses property. <p> For example, to add a new item, do as follows: <pre> getClauses().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the list FilterClause
      • getCriteria

        public java.util.List<Criterion> getCriteria()
        Gets the value of the criteria property. <p> 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 <CODE>set</CODE> method for the criteria property. <p> For example, to add a new item, do as follows: <pre> getCriteria().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the list Criterion
      • setClauses

        public void setClauses​(java.util.List<FilterClause> value)
      • setCriteria

        public void setCriteria​(java.util.List<Criterion> value)