com.sap.ip.me.api.persist.query
Class RelationalOperatorType

java.lang.Object
  extended bycom.sap.ip.me.api.persist.query.RelationalOperatorType

public final class RelationalOperatorType
extends java.lang.Object

Author:
SAP

Field Summary
static RelationalOperatorType CONTAINS
          Operator for wildcard '%searchstring%'search.
static RelationalOperatorType EQUALS
          Operator for '=' relational comparison
static RelationalOperatorType GREATER_THAN
          Operator for '>' relational comparison
static RelationalOperatorType IN
          Operator IN.
static RelationalOperatorType LIKE
          Operator for Wildcard Search (case sensitive).
static RelationalOperatorType LIKE_INSENSITIVE
          Operator for Wildcard Search (case insensitive).
static RelationalOperatorType LOWER_THAN
          Operator for '<' relational comparison
static RelationalOperatorType NOT_EQUALS
          Operator for '<>' relational comparison
static RelationalOperatorType SQL_LIKE
          Operator for Wildcard Search (case sensitive).
static RelationalOperatorType STARTS_WITH
          Operator for wildcard 'searchstring%' search.
 
Method Summary
 int getInstanceId()
           
 java.lang.String toString()
          Description of the Method
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

EQUALS

public static RelationalOperatorType EQUALS
Operator for '=' relational comparison


LOWER_THAN

public static RelationalOperatorType LOWER_THAN
Operator for '<' relational comparison


GREATER_THAN

public static RelationalOperatorType GREATER_THAN
Operator for '>' relational comparison


NOT_EQUALS

public static RelationalOperatorType NOT_EQUALS
Operator for '<>' relational comparison


IN

public static RelationalOperatorType IN
Operator IN. This Operator is not supported with FileIo storage.


CONTAINS

public static RelationalOperatorType CONTAINS
Operator for wildcard '%searchstring%'search.


STARTS_WITH

public static RelationalOperatorType STARTS_WITH
Operator for wildcard 'searchstring%' search.


LIKE

public static RelationalOperatorType LIKE
Operator for Wildcard Search (case sensitive). Wildcard symbol is '*'. This Operator is not supported with FileIo storage.


LIKE_INSENSITIVE

public static RelationalOperatorType LIKE_INSENSITIVE
Operator for Wildcard Search (case insensitive). Wildcard symbol is '*'. This Operator is not supported with FileIo storage.


SQL_LIKE

public static RelationalOperatorType SQL_LIKE
Operator for Wildcard Search (case sensitive). Wildcard symbol is '%'. Use this for fastest Wildcard Search on Database. This Operator is not supported with FileIo storage.

Method Detail

toString

public java.lang.String toString()
Description of the Method

Returns:
Description of the Return Value

getInstanceId

public int getInstanceId()


Copyright © 2005 SAP AG. All Rights Reserved.