oracle.dacf.dataset
Interface ViewCriteriaRowProps
- All Known Implementing Classes:
- QueryCriteriaRowset
- public interface ViewCriteriaRowProps
Internal: Applications should not use this class or
its methods.
This interface defines methods to control the properties on the
ViewCriteriaRow. As of version JDeveloper 3.2, the ViewCriteriaRow
allows the clients to control whether 'search' for character
datatypes is case-sensitive.
This interface is used in conjunction with QueryCriteriaRowset by
the FindPanel.
Method Summary |
boolean |
isUpperColumns()
Returns the upper-columns flag for this Row . |
void |
setUpperColumns(boolean isUpper)
Sets the upper-columns flag for this Row . |
isUpperColumns
public boolean isUpperColumns()
- Returns the upper-columns flag for this
Row
.
If this flag is true
, UPPER SQL operator will be applied
to all CHAR/VARCHAR columns when the SQL WHERE clause is generated.
- Returns:
- isSensitive flag indicating whether to apply UPPER to columns
setUpperColumns
public void setUpperColumns(boolean isUpper)
- Sets the upper-columns flag for this
Row
.
If this flag is true
, UPPER SQL operator will be applied
to all CHAR/VARCHAR columns when the SQL WHERE clause is generated.
- Parameters:
isUpper
- a new flag value for upper'ing columns.