Class SearchGroupType
- java.lang.Object
-
- com.vidispine.generated.SearchGroupType
-
- All Implemented Interfaces:
Serializable
,Cloneable
,org.jvnet.jaxb2_commons.lang.CopyTo2
,org.jvnet.jaxb2_commons.lang.Equals2
,org.jvnet.jaxb2_commons.lang.HashCode2
public class SearchGroupType extends Object implements Serializable, Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo2, org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2
Java class for SearchGroupType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SearchGroupType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="operator" type="{http://xml.vidispine.com/schema/vidispine}SearchOperatorType" minOccurs="0"/> <choice> <sequence> <element name="field" type="{http://xml.vidispine.com/schema/vidispine}SearchFieldType" maxOccurs="unbounded" minOccurs="0"/> <element name="group" type="{http://xml.vidispine.com/schema/vidispine}SearchGroupType" maxOccurs="unbounded" minOccurs="0"/> </sequence> <sequence> <element name="reference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </choice> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SearchGroupType.PropInfo
-
Field Summary
Fields Modifier and Type Field Description protected List<SearchFieldType>
field
protected List<SearchGroupType>
group
protected String
name
protected SearchOperatorType
operator
protected String
reference
-
Constructor Summary
Constructors Constructor Description SearchGroupType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
Object
copyTo(Object target)
Object
copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)
Object
createNewInstance()
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.EqualsStrategy2 strategy)
List<SearchFieldType>
getField()
Gets the value of the field property.List<SearchGroupType>
getGroup()
Gets the value of the group property.String
getName()
Gets the value of the name property.SearchOperatorType
getOperator()
Gets the value of the operator property.String
getReference()
Gets the value of the reference property.int
hashCode()
int
hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
boolean
isSetField()
boolean
isSetGroup()
boolean
isSetName()
boolean
isSetOperator()
boolean
isSetReference()
void
setName(String value)
Sets the value of the name property.void
setOperator(SearchOperatorType value)
Sets the value of the operator property.void
setReference(String value)
Sets the value of the reference property.void
unsetField()
void
unsetGroup()
SearchGroupType
visit(com.kscs.util.jaxb.PropertyVisitor _visitor_)
SearchGroupType
withField(SearchFieldType... values)
SearchGroupType
withField(Collection<SearchFieldType> values)
SearchGroupType
withGroup(SearchGroupType... values)
SearchGroupType
withGroup(Collection<SearchGroupType> values)
SearchGroupType
withName(String value)
SearchGroupType
withOperator(SearchOperatorType value)
SearchGroupType
withReference(String value)
-
-
-
Field Detail
-
name
protected String name
-
operator
protected SearchOperatorType operator
-
field
protected List<SearchFieldType> field
-
group
protected List<SearchGroupType> group
-
reference
protected String reference
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
isSetName
public boolean isSetName()
-
getOperator
public SearchOperatorType getOperator()
Gets the value of the operator property.- Returns:
- possible object is
SearchOperatorType
-
setOperator
public void setOperator(SearchOperatorType value)
Sets the value of the operator property.- Parameters:
value
- allowed object isSearchOperatorType
-
isSetOperator
public boolean isSetOperator()
-
getField
public List<SearchFieldType> getField()
Gets the value of the field 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 field property.For example, to add a new item, do as follows:
getField().add(newItem);
Objects of the following type(s) are allowed in the list
SearchFieldType
-
isSetField
public boolean isSetField()
-
unsetField
public void unsetField()
-
getGroup
public List<SearchGroupType> getGroup()
Gets the value of the group 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 group property.For example, to add a new item, do as follows:
getGroup().add(newItem);
Objects of the following type(s) are allowed in the list
SearchGroupType
-
isSetGroup
public boolean isSetGroup()
-
unsetGroup
public void unsetGroup()
-
getReference
public String getReference()
Gets the value of the reference property.- Returns:
- possible object is
String
-
setReference
public void setReference(String value)
Sets the value of the reference property.- Parameters:
value
- allowed object isString
-
isSetReference
public boolean isSetReference()
-
copyTo
public Object copyTo(Object target)
- Specified by:
copyTo
in interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2
-
copyTo
public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy2 strategy)
- Specified by:
copyTo
in interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2
-
createNewInstance
public Object createNewInstance()
- Specified by:
createNewInstance
in interfaceorg.jvnet.jaxb2_commons.lang.CopyTo2
-
withName
public SearchGroupType withName(String value)
-
withOperator
public SearchGroupType withOperator(SearchOperatorType value)
-
withField
public SearchGroupType withField(SearchFieldType... values)
-
withField
public SearchGroupType withField(Collection<SearchFieldType> values)
-
withGroup
public SearchGroupType withGroup(SearchGroupType... values)
-
withGroup
public SearchGroupType withGroup(Collection<SearchGroupType> values)
-
withReference
public SearchGroupType withReference(String value)
-
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.EqualsStrategy2 strategy)
- Specified by:
equals
in interfaceorg.jvnet.jaxb2_commons.lang.Equals2
-
visit
public SearchGroupType visit(com.kscs.util.jaxb.PropertyVisitor _visitor_)
-
hashCode
public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
- Specified by:
hashCode
in interfaceorg.jvnet.jaxb2_commons.lang.HashCode2
-
-