com.konakart.json.app
Class J_DataDescriptor
java.lang.Object
com.konakart.json.app.J_DataDescriptor
- All Implemented Interfaces:
- java.io.Serializable
public class J_DataDescriptor
- extends java.lang.Object
- implements java.io.Serializable
Contains information required to manage engine calls that return an array of data. Offsets,
limits for the number of objects returned and sort orders, may be controlled using the
DataDescriptor.
When used to return an array of product objects, the default behavior is that invisible products
are not returned unless setShowInvisible()
is set to true.
If any of the custom attributes ( i.e. custom1
, custom2
etc. ) are
given non null values, then they are used as search constraints in the query. For example, if
custom1
is set to "Large" then only objects with the custom1
attribute
set to "Large" are returned. A rule can be set to make he search exact or to use wild cards.
- See Also:
- Serialized Form
Method Summary |
java.lang.String |
getCustom1()
If not null, it is used as a constraint . |
java.lang.String |
getCustom10()
If not null, it is used as a constraint . |
int |
getCustom10Rule()
The rule for the search constraint. |
java.math.BigDecimal |
getCustom1Dec()
If not null, it is used as a constraint . |
int |
getCustom1DecRule()
The rule for the search constraint. |
java.lang.Integer |
getCustom1Int()
If not null, it is used as a constraint . |
int |
getCustom1IntRule()
The rule for the search constraint. |
int |
getCustom1Rule()
The rule for the search constraint. |
java.lang.String |
getCustom2()
If not null, it is used as a constraint . |
java.math.BigDecimal |
getCustom2Dec()
If not null, it is used as a constraint . |
int |
getCustom2DecRule()
The rule for the search constraint. |
java.lang.Integer |
getCustom2Int()
If not null, it is used as a constraint . |
int |
getCustom2IntRule()
The rule for the search constraint. |
int |
getCustom2Rule()
The rule for the search constraint. |
java.lang.String |
getCustom3()
If not null, it is used as a constraint . |
int |
getCustom3Rule()
The rule for the search constraint. |
java.lang.String |
getCustom4()
If not null, it is used as a constraint . |
int |
getCustom4Rule()
The rule for the search constraint. |
java.lang.String |
getCustom5()
If not null, it is used as a constraint . |
int |
getCustom5Rule()
The rule for the search constraint. |
java.lang.String |
getCustom6()
If not null, it is used as a constraint . |
int |
getCustom6Rule()
The rule for the search constraint. |
java.lang.String |
getCustom7()
If not null, it is used as a constraint . |
int |
getCustom7Rule()
The rule for the search constraint. |
java.lang.String |
getCustom8()
If not null, it is used as a constraint . |
int |
getCustom8Rule()
The rule for the search constraint. |
java.lang.String |
getCustom9()
If not null, it is used as a constraint . |
int |
getCustom9Rule()
The rule for the search constraint. |
int |
getLimit()
It defines the maximum number of objects returned. |
int |
getOffset()
It sets the offset so that an array of objects can be paged. |
java.lang.String |
getOrderBy_1()
If set it is used as a secondary order by. |
java.lang.String |
getOrderBy()
The valid orderBy values are:
com.konakart.app.DataDescConstants.ORDER_BY_NAME_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_NAME_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_PRICE_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_PRICE_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED
com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_RATING_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_RATING_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_ID
com.konakart.app.DataDescConstants.ORDER_BY_MANUFACTURER
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_DESCENDING *
|
boolean |
isFillCustomAttrArray()
When set to true, each product returned has an instantiated array of custom attributes when
applicable. |
boolean |
isFillDescription()
Fills the product description attribute with the description in the chosen language. |
boolean |
isFillMiscItems()
Indicates whether the miscItems attribute will be filled with the associated miscellaneous
items. |
boolean |
isShowInvisible()
If set to true, we return even the invisible products. |
void |
setCustom1(java.lang.String _custom1)
If not null, it is used as a constraint . |
void |
setCustom10(java.lang.String _custom10)
If not null, it is used as a constraint . |
void |
setCustom10Rule(int _custom10Rule)
The rule for the search constraint. |
void |
setCustom1Dec(java.math.BigDecimal _custom1Dec)
If not null, it is used as a constraint . |
void |
setCustom1DecRule(int _custom1DecRule)
The rule for the search constraint. |
void |
setCustom1Int(java.lang.Integer _custom1Int)
If not null, it is used as a constraint . |
void |
setCustom1IntRule(int _custom1IntRule)
The rule for the search constraint. |
void |
setCustom1Rule(int _custom1Rule)
The rule for the search constraint. |
void |
setCustom2(java.lang.String _custom2)
If not null, it is used as a constraint . |
void |
setCustom2Dec(java.math.BigDecimal _custom2Dec)
If not null, it is used as a constraint . |
void |
setCustom2DecRule(int _custom2DecRule)
The rule for the search constraint. |
void |
setCustom2Int(java.lang.Integer _custom2Int)
If not null, it is used as a constraint . |
void |
setCustom2IntRule(int _custom2IntRule)
The rule for the search constraint. |
void |
setCustom2Rule(int _custom2Rule)
The rule for the search constraint. |
void |
setCustom3(java.lang.String _custom3)
If not null, it is used as a constraint . |
void |
setCustom3Rule(int _custom3Rule)
The rule for the search constraint. |
void |
setCustom4(java.lang.String _custom4)
If not null, it is used as a constraint . |
void |
setCustom4Rule(int _custom4Rule)
The rule for the search constraint. |
void |
setCustom5(java.lang.String _custom5)
If not null, it is used as a constraint . |
void |
setCustom5Rule(int _custom5Rule)
The rule for the search constraint. |
void |
setCustom6(java.lang.String _custom6)
If not null, it is used as a constraint . |
void |
setCustom6Rule(int _custom6Rule)
The rule for the search constraint. |
void |
setCustom7(java.lang.String _custom7)
If not null, it is used as a constraint . |
void |
setCustom7Rule(int _custom7Rule)
The rule for the search constraint. |
void |
setCustom8(java.lang.String _custom8)
If not null, it is used as a constraint . |
void |
setCustom8Rule(int _custom8Rule)
The rule for the search constraint. |
void |
setCustom9(java.lang.String _custom9)
If not null, it is used as a constraint . |
void |
setCustom9Rule(int _custom9Rule)
The rule for the search constraint. |
void |
setFillCustomAttrArray(boolean _fillCustomAttrArray)
When set to true, each product returned has an instantiated array of custom attributes when
applicable. |
void |
setFillDescription(boolean _fillDescription)
Fills the product description attribute with the description in the chosen language. |
void |
setFillMiscItems(boolean _fillMiscItems)
|
void |
setLimit(int _limit)
It defines the maximum number of objects returned. |
void |
setOffset(int _offset)
It sets the offset so that an array of objects can be paged. |
void |
setOrderBy_1(java.lang.String _orderBy_1)
If set it is used as a secondary order by. |
void |
setOrderBy(java.lang.String _orderBy)
The valid orderBy values are:
com.konakart.app.DataDescConstants.ORDER_BY_NAME_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_NAME_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_PRICE_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_PRICE_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED
com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_RATING_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_RATING_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_ID
com.konakart.app.DataDescConstants.ORDER_BY_MANUFACTURER
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_DESCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_ASCENDING
com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_DESCENDING *
|
void |
setShowInvisible(boolean _showInvisible)
If set to true, we return even the invisible products. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
J_DataDescriptor
public J_DataDescriptor()
getLimit
public int getLimit()
- It defines the maximum number of objects returned.
- Returns:
- Returns the limit.
setLimit
public void setLimit(int _limit)
- It defines the maximum number of objects returned.
- Parameters:
_limit
- The limit to set.
getOffset
public int getOffset()
- It sets the offset so that an array of objects can be paged.
- Returns:
- Returns the offset.
setOffset
public void setOffset(int _offset)
- It sets the offset so that an array of objects can be paged.
- Parameters:
_offset
- The offset to set.
getOrderBy
public java.lang.String getOrderBy()
- The valid orderBy values are:
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_ID
- com.konakart.app.DataDescConstants.ORDER_BY_MANUFACTURER
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_DESCENDING
*
- Returns:
- Returns the orderBy.
setOrderBy
public void setOrderBy(java.lang.String _orderBy)
- The valid orderBy values are:
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_ID
- com.konakart.app.DataDescConstants.ORDER_BY_MANUFACTURER
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_DESCENDING
*
- Parameters:
_orderBy
- The orderBy to set.
getOrderBy_1
public java.lang.String getOrderBy_1()
- If set it is used as a secondary order by. The valid orderBy_1 values are:
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_ID
- com.konakart.app.DataDescConstants.ORDER_BY_MANUFACTURER
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_DESCENDING
*
- Returns:
- Returns the orderBy_1.
setOrderBy_1
public void setOrderBy_1(java.lang.String _orderBy_1)
- If set it is used as a secondary order by. The valid orderBy_1 values are:
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_NAME_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_PRICE_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_DATE_ADDED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_VIEWED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_TIMES_ORDERED_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_RATING_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_ID
- com.konakart.app.DataDescConstants.ORDER_BY_MANUFACTURER
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM3_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM4_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM5_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM6_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM7_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM8_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM9_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM10_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2INT_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM1DEC_DESCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_ASCENDING
- com.konakart.app.DataDescConstants.ORDER_BY_CUSTOM2DEC_DESCENDING
*
- Parameters:
_orderBy_1
- The orderBy_1 to set.
isShowInvisible
public boolean isShowInvisible()
- If set to true, we return even the invisible products.
- Returns:
- Returns the showInvisible.
setShowInvisible
public void setShowInvisible(boolean _showInvisible)
- If set to true, we return even the invisible products.
- Parameters:
_showInvisible
- The showInvisible to set.
isFillMiscItems
public boolean isFillMiscItems()
- Indicates whether the miscItems attribute will be filled with the associated miscellaneous
items. The default value is false, in order to maximize performance.
- Returns:
- the fillMiscItems
setFillMiscItems
public void setFillMiscItems(boolean _fillMiscItems)
- Parameters:
_fillMiscItems
- when set to true the miscellaneous items for the object are returned in the
miscItems attribute. The default value is false, in order to maximize performance.
isFillDescription
public boolean isFillDescription()
- Fills the product description attribute with the description in the chosen language. Normally
this is not returned for performance reasons.
- Returns:
- the fillDescription
setFillDescription
public void setFillDescription(boolean _fillDescription)
- Fills the product description attribute with the description in the chosen language. Normally
this is not returned for performance reasons.
- Parameters:
_fillDescription
- the fillDescription to set
isFillCustomAttrArray
public boolean isFillCustomAttrArray()
- When set to true, each product returned has an instantiated array of custom attributes when
applicable. The default value is false, in order to maximize performance.
- Returns:
- the fillCustomAttrArray
setFillCustomAttrArray
public void setFillCustomAttrArray(boolean _fillCustomAttrArray)
- When set to true, each product returned has an instantiated array of custom attributes when
applicable. The default value is false, in order to maximize performance.
- Parameters:
_fillCustomAttrArray
- the fillCustomAttrArray to set
getCustom1
public java.lang.String getCustom1()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- Returns the custom1.
setCustom1
public void setCustom1(java.lang.String _custom1)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom1
- The custom1 to set.
getCustom2
public java.lang.String getCustom2()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- Returns the custom2.
setCustom2
public void setCustom2(java.lang.String _custom2)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom2
- The custom2 to set.
getCustom3
public java.lang.String getCustom3()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- Returns the custom3.
setCustom3
public void setCustom3(java.lang.String _custom3)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom3
- The custom3 to set.
getCustom4
public java.lang.String getCustom4()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- Returns the custom4.
setCustom4
public void setCustom4(java.lang.String _custom4)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom4
- The custom4 to set.
getCustom5
public java.lang.String getCustom5()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- Returns the custom5.
setCustom5
public void setCustom5(java.lang.String _custom5)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom5
- The custom5 to set.
getCustom6
public java.lang.String getCustom6()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom6
setCustom6
public void setCustom6(java.lang.String _custom6)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom6
- the custom6 to set
getCustom7
public java.lang.String getCustom7()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom7
setCustom7
public void setCustom7(java.lang.String _custom7)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom7
- the custom7 to set
getCustom8
public java.lang.String getCustom8()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom8
setCustom8
public void setCustom8(java.lang.String _custom8)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom8
- the custom8 to set
getCustom9
public java.lang.String getCustom9()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom9
setCustom9
public void setCustom9(java.lang.String _custom9)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom9
- the custom9 to set
getCustom10
public java.lang.String getCustom10()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom10
setCustom10
public void setCustom10(java.lang.String _custom10)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom10
- the custom10 to set
getCustom1Int
public java.lang.Integer getCustom1Int()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom1Int
setCustom1Int
public void setCustom1Int(java.lang.Integer _custom1Int)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom1Int
- the custom1Int to set
getCustom2Int
public java.lang.Integer getCustom2Int()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom2Int
setCustom2Int
public void setCustom2Int(java.lang.Integer _custom2Int)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom2Int
- the custom2Int to set
getCustom1Dec
public java.math.BigDecimal getCustom1Dec()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom1Dec
setCustom1Dec
public void setCustom1Dec(java.math.BigDecimal _custom1Dec)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom1Dec
- the custom1Dec to set
getCustom2Dec
public java.math.BigDecimal getCustom2Dec()
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Returns:
- the custom2Dec
setCustom2Dec
public void setCustom2Dec(java.math.BigDecimal _custom2Dec)
- If not null, it is used as a constraint . The associated rule attribute determines the type
of constraint.
- Parameters:
_custom2Dec
- the custom2Dec to set
getCustom1Rule
public int getCustom1Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom1Rule
setCustom1Rule
public void setCustom1Rule(int _custom1Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom1Rule
- the custom1Rule to set
getCustom2Rule
public int getCustom2Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom2Rule
setCustom2Rule
public void setCustom2Rule(int _custom2Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom2Rule
- the custom2Rule to set
getCustom3Rule
public int getCustom3Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom3Rule
setCustom3Rule
public void setCustom3Rule(int _custom3Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom3Rule
- the custom3Rule to set
getCustom4Rule
public int getCustom4Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom4Rule
setCustom4Rule
public void setCustom4Rule(int _custom4Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom4Rule
- the custom4Rule to set
getCustom5Rule
public int getCustom5Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom5Rule
setCustom5Rule
public void setCustom5Rule(int _custom5Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom5Rule
- the custom5Rule to set
getCustom6Rule
public int getCustom6Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom6Rule
setCustom6Rule
public void setCustom6Rule(int _custom6Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom6Rule
- the custom6Rule to set
getCustom7Rule
public int getCustom7Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom7Rule
setCustom7Rule
public void setCustom7Rule(int _custom7Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom7Rule
- the custom7Rule to set
getCustom8Rule
public int getCustom8Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom8Rule
setCustom8Rule
public void setCustom8Rule(int _custom8Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom8Rule
- the custom8Rule to set
getCustom9Rule
public int getCustom9Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom9Rule
setCustom9Rule
public void setCustom9Rule(int _custom9Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom9Rule
- the custom9Rule to set
getCustom10Rule
public int getCustom10Rule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Returns:
- the custom10Rule
setCustom10Rule
public void setCustom10Rule(int _custom10Rule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE
- KKConstants.SEARCH_ADD_WILDCARD_AFTER
- KKConstants.SEARCH_ADD_WILDCARD_BEFORE_AND_AFTER
- Parameters:
_custom10Rule
- the custom10Rule to set
getCustom1IntRule
public int getCustom1IntRule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Returns:
- the custom1IntRule
setCustom1IntRule
public void setCustom1IntRule(int _custom1IntRule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Parameters:
_custom1IntRule
- the custom1IntRule to set
getCustom2IntRule
public int getCustom2IntRule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Returns:
- the custom2IntRule
setCustom2IntRule
public void setCustom2IntRule(int _custom2IntRule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Parameters:
_custom2IntRule
- the custom2IntRule to set
getCustom1DecRule
public int getCustom1DecRule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Returns:
- the custom1DecRule
setCustom1DecRule
public void setCustom1DecRule(int _custom1DecRule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Parameters:
_custom1DecRule
- the custom1DecRule to set
getCustom2DecRule
public int getCustom2DecRule()
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Returns:
- the custom2DecRule
setCustom2DecRule
public void setCustom2DecRule(int _custom2DecRule)
- The rule for the search constraint. Valid values are:
- KKConstants.SEARCH_EXACT
- KKConstants.SEARCH_GREATER_THAN
- KKConstants.SEARCH_GREATER_EQUAL
- KKConstants.SEARCH_LESS_THAN
- KKConstants.SEARCH_LESS_EQUAL
- Parameters:
_custom2DecRule
- the custom2DecRule to set
Copyright © 2011 DS Data Systems UK Ltd.