FilterOperatorType
Contents
[
Hide
]Inheritance: java.lang.Object
public final class FilterOperatorType
Custom Filter operator type.
Fields
| Field | Description |
|---|---|
| BEGINS_WITH | Begins with the text. |
| CONTAINS | Contains the text. |
| ENDS_WITH | Ends with the text. |
| EQUAL | Represents Equal operator. |
| GREATER_OR_EQUAL | Represents GreaterOrEqual operator. |
| GREATER_THAN | Represents GreaterThan operator. |
| LESS_OR_EQUAL | Represents LessOrEqual operator. |
| LESS_THAN | Represents LessThan operator. |
| NONE | Represents no comparison. |
| NOT_BEGINS_WITH | Not begins with the text. |
| NOT_CONTAINS | Not contains the text. |
| NOT_ENDS_WITH | Not ends with the text. |
| NOT_EQUAL | Represents NotEqual operator. |
Methods
| Method | Description |
|---|---|
| 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_BEGINS_WITH
public static final int NOT_BEGINS_WITH
Not begins with the text.
NOT_CONTAINS
public static final int NOT_CONTAINS
Not contains the text.
NOT_ENDS_WITH
public static final int NOT_ENDS_WITH
Not ends with the text.
NOT_EQUAL
public static final int NOT_EQUAL
Represents NotEqual operator.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | java.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:
| Parameter | Type | Description |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | long | |
| arg1 | int |