public class DtoQuery
extends java.lang.Object
Java class for dtoQuery complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="dtoQuery"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="alias" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="distinct" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="entityName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="maxResults" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="orderBys" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="parameters"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="entry" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType> </element> <element name="where" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Class and Description |
---|---|
static class |
DtoQuery.Parameters
Java class for anonymous complex type.
|
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
alias |
protected boolean |
distinct |
protected java.lang.String |
entityName |
protected java.lang.Integer |
maxResults |
protected java.util.List<java.lang.String> |
orderBys |
protected DtoQuery.Parameters |
parameters |
protected java.lang.String |
where |
Constructor and Description |
---|
DtoQuery() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAlias()
Gets the value of the alias property.
|
java.lang.String |
getEntityName()
Gets the value of the entityName property.
|
java.lang.Integer |
getMaxResults()
Gets the value of the maxResults property.
|
java.util.List<java.lang.String> |
getOrderBys()
Gets the value of the orderBys property.
|
DtoQuery.Parameters |
getParameters()
Gets the value of the parameters property.
|
java.lang.String |
getWhere()
Gets the value of the where property.
|
boolean |
isDistinct()
Gets the value of the distinct property.
|
void |
setAlias(java.lang.String value)
Sets the value of the alias property.
|
void |
setDistinct(boolean value)
Sets the value of the distinct property.
|
void |
setEntityName(java.lang.String value)
Sets the value of the entityName property.
|
void |
setMaxResults(java.lang.Integer value)
Sets the value of the maxResults property.
|
void |
setParameters(DtoQuery.Parameters value)
Sets the value of the parameters property.
|
void |
setWhere(java.lang.String value)
Sets the value of the where property.
|
protected java.lang.String alias
protected boolean distinct
protected java.lang.String entityName
protected java.lang.Integer maxResults
protected java.util.List<java.lang.String> orderBys
protected DtoQuery.Parameters parameters
protected java.lang.String where
public java.lang.String getAlias()
String
public void setAlias(java.lang.String value)
value
- allowed object is
String
public boolean isDistinct()
public void setDistinct(boolean value)
public java.lang.String getEntityName()
String
public void setEntityName(java.lang.String value)
value
- allowed object is
String
public java.lang.Integer getMaxResults()
Integer
public void setMaxResults(java.lang.Integer value)
value
- allowed object is
Integer
public java.util.List<java.lang.String> getOrderBys()
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 orderBys property.
For example, to add a new item, do as follows:
getOrderBys().add(newItem);
Objects of the following type(s) are allowed in the list
String
public DtoQuery.Parameters getParameters()
DtoQuery.Parameters
public void setParameters(DtoQuery.Parameters value)
value
- allowed object is
DtoQuery.Parameters
public java.lang.String getWhere()
String
public void setWhere(java.lang.String value)
value
- allowed object is
String