public interface QueryFilterProperty
QueryFilterProperty| Modifier and Type | Method and Description |
|---|---|
List<Boolean> |
getBooleanParam()
Retrieves a list containing all the elements for the attribute
booleanParam. |
String |
getClause()
Retrieves the value for the attribute
clause. |
List<XMLGregorianCalendar> |
getDateParam()
Retrieves a list containing all the elements for the attribute
dateParam. |
List<Date> |
getDateTimeParam()
Retrieves a list containing all the elements for the attribute
dateTimeParam. |
List<BigDecimal> |
getDecimalParam()
Retrieves a list containing all the elements for the attribute
decimalParam. |
List<Integer> |
getIntegerParam()
Retrieves a list containing all the elements for the attribute
integerParam. |
List<String> |
getStringParam()
Retrieves a list containing all the elements for the attribute
stringParam. |
void |
setBooleanParam(boolean... booleanParam)
Clears
booleanParam and adds the given value(s). |
void |
setClause(String clause)
Sets a new value for the attribute
clause. |
void |
setDateParam(XMLGregorianCalendar... dateParam)
Clears
dateParam and adds the given value(s). |
void |
setDateTimeParam(Date... dateTimeParam)
Clears
dateTimeParam and adds the given value(s). |
void |
setDecimalParam(BigDecimal... decimalParam)
Clears
decimalParam and adds the given value(s). |
void |
setIntegerParam(int... integerParam)
Clears
integerParam and adds the given value(s). |
void |
setStringParam(String... stringParam)
Clears
stringParam and adds the given value(s). |
List<Boolean> getBooleanParam()
booleanParam.void setBooleanParam(boolean... booleanParam)
booleanParam and adds the given value(s).
This method is equivalent to
list.clear();
for(boolean e : attributeName){
list.add(e);
}
booleanParam - value(s) to be added to booleanParamString getClause()
clause.clause.void setClause(String clause)
clause.clause - The non-null new value for attribute clause.List<XMLGregorianCalendar> getDateParam()
dateParam.void setDateParam(XMLGregorianCalendar... dateParam)
dateParam and adds the given value(s).
This method is equivalent to
list.clear();
for(javax.xml.datatype.XMLGregorianCalendar e : attributeName){
list.add(e);
}
dateParam - value(s) to be added to dateParamList<Date> getDateTimeParam()
dateTimeParam.void setDateTimeParam(Date... dateTimeParam)
dateTimeParam and adds the given value(s).
This method is equivalent to
list.clear();
for(java.util.Date e : attributeName){
list.add(e);
}
dateTimeParam - value(s) to be added to dateTimeParamList<BigDecimal> getDecimalParam()
decimalParam.void setDecimalParam(BigDecimal... decimalParam)
decimalParam and adds the given value(s).
This method is equivalent to
list.clear();
for(java.math.BigDecimal e : attributeName){
list.add(e);
}
decimalParam - value(s) to be added to decimalParamList<Integer> getIntegerParam()
integerParam.void setIntegerParam(int... integerParam)
integerParam and adds the given value(s).
This method is equivalent to
list.clear();
for(int e : attributeName){
list.add(e);
}
integerParam - value(s) to be added to integerParamList<String> getStringParam()
stringParam.void setStringParam(String... stringParam)
stringParam and adds the given value(s).
This method is equivalent to
list.clear();
for(java.lang.String e : attributeName){
list.add(e);
}
stringParam - value(s) to be added to stringParamThis software is published under the BSD license. Copyright © 2003-${build.year}, CRIXP AG, Switzerland, All rights reserved. Use is subject to license terms.