Package com.flower.docs.domain.search
Class Criterion
- java.lang.Object
-
- com.flower.docs.domain.search.Criterion
-
- All Implemented Interfaces:
java.io.Serializable
public class Criterion extends java.lang.Object implements java.io.Serializable<p>Java class for Criterion complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="Criterion"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="operator" type="{http://flower.com/docs/domain/search}Operators"/> <element name="type" type="{http://flower.com/docs/domain/search}Types"/> <element name="values" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)java.lang.StringgetName()Gets the value of the name property.OperatorsgetOperator()Gets the value of the operator property.TypesgetType()Gets the value of the type property.java.util.List<java.lang.String>getValues()Gets the value of the values property.inthashCode()voidsetName(java.lang.String value)Sets the value of the name property.voidsetOperator(Operators value)Sets the value of the operator property.voidsetType(Types value)Sets the value of the type property.voidsetValues(java.util.List<java.lang.String> value)java.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getOperator
public Operators getOperator()
Gets the value of the operator property.- Returns:
- possible object is
Operators
-
setOperator
public void setOperator(Operators value)
Sets the value of the operator property.- Parameters:
value- allowed object isOperators
-
getType
public Types getType()
Gets the value of the type property.- Returns:
- possible object is
Types
-
setType
public void setType(Types value)
Sets the value of the type property.- Parameters:
value- allowed object isTypes
-
getValues
public java.util.List<java.lang.String> getValues()
Gets the value of the values 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 values property. <p> For example, to add a new item, do as follows: <pre> getValues().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listString
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
setValues
public void setValues(java.util.List<java.lang.String> value)
-
-