FilterOperatorType

Inheritance: java.lang.Object

public final class FilterOperatorType

Custom Filter operator type.

Fields

FieldDescription
BEGINS_WITHBegins with the text.
CONTAINSContains the text.
ENDS_WITHEnds with the text.
EQUALRepresents Equal operator.
GREATER_OR_EQUALRepresents GreaterOrEqual operator.
GREATER_THANRepresents GreaterThan operator.
LESS_OR_EQUALRepresents LessOrEqual operator.
LESS_THANRepresents LessThan operator.
NONERepresents no comparison.
NOT_CONTAINSNot contains the text.
NOT_EQUALRepresents NotEqual operator.

Methods

MethodDescription
equals(Object arg0)
getClass()
hashCode()
notify()
notifyAll()
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

BEGINS_WITH

public static final int BEGINS_WITH

Begins with the text.

CONTAINS

public static final int CONTAINS

Contains the text.

ENDS_WITH

public static final int ENDS_WITH

Ends with the text.

EQUAL

public static final int EQUAL

Represents Equal operator.

GREATER_OR_EQUAL

public static final int GREATER_OR_EQUAL

Represents GreaterOrEqual operator.

GREATER_THAN

public static final int GREATER_THAN

Represents GreaterThan operator.

LESS_OR_EQUAL

public static final int LESS_OR_EQUAL

Represents LessOrEqual operator.

LESS_THAN

public static final int LESS_THAN

Represents LessThan operator.

NONE

public static final int NONE

Represents no comparison.

NOT_CONTAINS

public static final int NOT_CONTAINS

Not contains the text.

NOT_EQUAL

public static final int NOT_EQUAL

Represents NotEqual operator.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int