public final class LongComparisonField extends ComparisonField
Represents the Int64 search field.
FieldName, owner
Modifier and Type | Method and Description |
---|---|
MailQuery |
equals(long value)
Indicates that field must be
equal to the specified value.
|
MailQuery |
greater(long value)
Indicates that field must be greater than the specified value.
|
MailQuery |
greaterOrEqual(long value)
Indicates that field must be greater or equal to the specified value.
|
MailQuery |
less(long value)
Indicates that field must be less than the specified value.
|
MailQuery |
lessOrEqual(long value)
Indicates that field must be less or equal to the specified value.
|
MailQuery |
notEquals(long value)
Indicates that field must not be
equal to the specified value.
|
createKey, createKey
public final MailQuery equals(long value)
Indicates that field must be equal to the specified value.
value
- The value.MailQuery
that represents search query (one searching criterion).public final MailQuery notEquals(long value)
Indicates that field must not be equal to the specified value.
value
- The value.MailQuery
that represents search query (one searching criterion).public final MailQuery less(long value)
Indicates that field must be less than the specified value.
value
- The value.MailQuery
that represents search query (one searching criterion).public final MailQuery greater(long value)
Indicates that field must be greater than the specified value.
value
- The value.MailQuery
that represents search query (one searching criterion).public final MailQuery lessOrEqual(long value)
Indicates that field must be less or equal to the specified value.
value
- The value.MailQuery
that represents search query (one searching criterion).