org.apache.jackrabbit.spi.commons.query.jsr283.qom
Interface QueryObjectModelConstants

All Known Subinterfaces:
QueryObjectModelFactory
All Known Implementing Classes:
JQOM2LuceneQueryBuilder, QueryObjectModelFactoryImpl

public interface QueryObjectModelConstants

Defines constants used in the query object model.

Since:
JCR 2.0

Field Summary
static int JOIN_TYPE_INNER
          An inner join.
static int JOIN_TYPE_LEFT_OUTER
          A left-outer join.
static int JOIN_TYPE_RIGHT_OUTER
          A right-outer join.
static int OPERATOR_EQUAL_TO
          The "=" comparison operator.
static int OPERATOR_GREATER_THAN
          The ">" comparison operator.
static int OPERATOR_GREATER_THAN_OR_EQUAL_TO
          The ">=" comparison operator.
static int OPERATOR_LESS_THAN
          The "<" comparison operator.
static int OPERATOR_LESS_THAN_OR_EQUAL_TO
          The "<=" comparison operator.
static int OPERATOR_LIKE
          The "like" comparison operator.
static int OPERATOR_NOT_EQUAL_TO
          The "!
static int ORDER_ASCENDING
          Ascending order.
static int ORDER_DESCENDING
          Descending order.
 

Field Detail

JOIN_TYPE_INNER

static final int JOIN_TYPE_INNER
An inner join.

See Also:
Constant Field Values

JOIN_TYPE_LEFT_OUTER

static final int JOIN_TYPE_LEFT_OUTER
A left-outer join.

See Also:
Constant Field Values

JOIN_TYPE_RIGHT_OUTER

static final int JOIN_TYPE_RIGHT_OUTER
A right-outer join.

See Also:
Constant Field Values

OPERATOR_EQUAL_TO

static final int OPERATOR_EQUAL_TO
The "=" comparison operator.

See Also:
Constant Field Values

OPERATOR_NOT_EQUAL_TO

static final int OPERATOR_NOT_EQUAL_TO
The "!=" comparison operator.

See Also:
Constant Field Values

OPERATOR_LESS_THAN

static final int OPERATOR_LESS_THAN
The "<" comparison operator.

See Also:
Constant Field Values

OPERATOR_LESS_THAN_OR_EQUAL_TO

static final int OPERATOR_LESS_THAN_OR_EQUAL_TO
The "<=" comparison operator.

See Also:
Constant Field Values

OPERATOR_GREATER_THAN

static final int OPERATOR_GREATER_THAN
The ">" comparison operator.

See Also:
Constant Field Values

OPERATOR_GREATER_THAN_OR_EQUAL_TO

static final int OPERATOR_GREATER_THAN_OR_EQUAL_TO
The ">=" comparison operator.

See Also:
Constant Field Values

OPERATOR_LIKE

static final int OPERATOR_LIKE
The "like" comparison operator.

See Also:
Constant Field Values

ORDER_ASCENDING

static final int ORDER_ASCENDING
Ascending order.

See Also:
Constant Field Values

ORDER_DESCENDING

static final int ORDER_DESCENDING
Descending order.

See Also:
Constant Field Values


Copyright © 2004-2008 The Apache Software Foundation. All Rights Reserved.