Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.0.0)

E17483-01

oracle.jbo.common.types
Interface ViewCriteriaItem

All Known Subinterfaces:
ViewCriteriaItem
All Known Implementing Classes:
ViewCriteriaItemImpl, ViewCriteriaItemImpl

public interface ViewCriteriaItem

Since:
11g Release 1 (11.1.1)

Method Summary
 java.lang.String getAttribute()
          Gets the attribute name for the view criteria item.
 java.lang.String getConjunction()
          Gets the conjunction used between this view criteria item and the previous view criteria item.
 ViewCriteria getNested()
          Gets the nested view criteria for the view criteria item.
 java.lang.String getOperator()
          Gets the comparison operator for the view criteria item.
 boolean getUpperCaseCompare()
          Gets the flag that indicates whether to search case-insensitively.
 java.util.List getValue()
          Gets the values to filter on for the view criteria item.
 void setAttribute(java.lang.String value)
          Sets the attribute name for the view criteria item.
 void setConjunction(java.lang.String value)
          Sets the conjunction used between this view criteria item and the previous view criteria item.
 void setNested(ViewCriteria value)
          Sets the nested view criteria for the view criteria item.
 void setOperator(java.lang.String value)
          Sets the comparison operator for the view criteria item.
 void setUpperCaseCompare(boolean value)
          Sets the flag that indicates whether to search case-insensitively.
 void setValue(java.util.List value)
          Sets the values to filter on for the view criteria item.
 

Method Detail

getConjunction

java.lang.String getConjunction()
Gets the conjunction used between this view criteria item and the previous view criteria item.

Returns:
conjuction for this view criteria item.

setConjunction

void setConjunction(java.lang.String value)
Sets the conjunction used between this view criteria item and the previous view criteria item.

Parameters:
value - conjuction for this view criteria item

getUpperCaseCompare

boolean getUpperCaseCompare()
Gets the flag that indicates whether to search case-insensitively.

Returns:
case-insensitivity flag.

setUpperCaseCompare

void setUpperCaseCompare(boolean value)
Sets the flag that indicates whether to search case-insensitively. The default is false (case sensitive search).

Parameters:
value - case-insensitivity flag

getAttribute

java.lang.String getAttribute()
Gets the attribute name for the view criteria item.

Returns:
attribute name.

setAttribute

void setAttribute(java.lang.String value)
Sets the attribute name for the view criteria item.

Parameters:
value - attribute name

getOperator

java.lang.String getOperator()
Gets the comparison operator for the view criteria item.

Returns:
comparison operator.

setOperator

void setOperator(java.lang.String value)
Sets the comparison operator for the view criteria item.

Parameters:
value - comparison operator

getValue

java.util.List getValue()
Gets the values to filter on for the view criteria item.

Returns:
values to filter on.

setValue

void setValue(java.util.List value)
Sets the values to filter on for the view criteria item. When this is set, nested view criteria is ignored.

Parameters:
value - values to filter on

getNested

ViewCriteria getNested()
Gets the nested view criteria for the view criteria item.

Returns:
nested view criteria.

setNested

void setNested(ViewCriteria value)
Sets the nested view criteria for the view criteria item. This is ignored when filter value is set.

Parameters:
value - nested view criteria

Oracle Fusion Middleware Java API Reference for Oracle ADF Model
11g Release 2 (11.1.2.0.0)

E17483-01

Copyright © 1997, 2011, Oracle. All rights reserved.