javax.mail.search

Class ComparisonTerm

public abstract class ComparisonTerm extends SearchTerm

A comparison for scalar values.

Version: 1.3

Author: Chris Burdess

Field Summary
protected intcomparison
The comparison operator.
static intEQ
The equality operator.
static intGE
The greater than or equal to operator.
static intGT
The greater than operator.
static intLE
The less than or equal to operator.
static intLT
The less than operator.
static intNE
The not equal to operator.
Method Summary
booleanequals(Object other)
inthashCode()

Field Detail

comparison

protected int comparison
The comparison operator.

EQ

public static final int EQ
The equality operator.

GE

public static final int GE
The greater than or equal to operator.

GT

public static final int GT
The greater than operator.

LE

public static final int LE
The less than or equal to operator.

LT

public static final int LT
The less than operator.

NE

public static final int NE
The not equal to operator.

Method Detail

equals

public boolean equals(Object other)

hashCode

public int hashCode()
©