public static interface QueryBuilder.OrderByOperandBuilder
Modifier and Type | Method and Description |
---|---|
QueryBuilder.OrderByBuilder |
childCount(String table)
Adds to the order-by clause by using the child count of the node given by the named table.
|
QueryBuilder.OrderByBuilder |
depth(String table)
Adds to the order-by clause by using the depth of the node given by the named table.
|
QueryBuilder.OrderByBuilder |
fullTextSearchScore(String table)
Adds to the order-by clause by using the full-text search score for the given table.
|
QueryBuilder.OrderByBuilder |
length(String table,
String property)
Adds to the order-by clause by using the length of the value for the given table and property.
|
QueryBuilder.OrderByOperandBuilder |
lowerCaseOf()
Adds to the order-by clause by using the lowercase form of the next operand.
|
QueryBuilder.OrderByBuilder |
nodeLocalName(String table)
Adds to the order-by clause by using the local name of the node given by the named table.
|
QueryBuilder.OrderByBuilder |
nodeName(String table)
Adds to the order-by clause by using the node name (including namespace) of the node given by the named table.
|
QueryBuilder.OrderByBuilder |
path(String table)
Adds to the order-by clause by using the path of the node given by the named table.
|
QueryBuilder.OrderByBuilder |
propertyValue(String table,
String property)
Adds to the order-by clause by using the value for the given table and property.
|
QueryBuilder.OrderByBuilder |
referenceValue(String table)
Constrains the nodes in the the supplied table such that they must have a matching value for any of the node's
reference properties.
|
QueryBuilder.OrderByBuilder |
referenceValue(String table,
String property)
Constrains the nodes in the the supplied table such that they must have a matching value for the named property.
|
QueryBuilder.OrderByOperandBuilder |
upperCaseOf()
Adds to the order-by clause by using the uppercase form of the next operand.
|
QueryBuilder.OrderByBuilder length(String table, String property)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseproperty
- the name of the property; may not be null and must refer to a valid property nameQueryBuilder.OrderByBuilder propertyValue(String table, String property)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseproperty
- the name of the property; may not be null and must refer to a valid property nameQueryBuilder.OrderByBuilder referenceValue(String table)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseQueryBuilder.OrderByBuilder referenceValue(String table, String property)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseproperty
- the name of the reference property; may be null if the constraint applies to all/any reference
properties on the nodeQueryBuilder.OrderByBuilder fullTextSearchScore(String table)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseQueryBuilder.OrderByBuilder childCount(String table)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseQueryBuilder.OrderByBuilder depth(String table)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseQueryBuilder.OrderByBuilder path(String table)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseQueryBuilder.OrderByBuilder nodeLocalName(String table)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseQueryBuilder.OrderByBuilder nodeName(String table)
table
- the name of the table; may not be null and must refer to a valid name or alias of a table appearing in the
FROM clauseQueryBuilder.OrderByOperandBuilder upperCaseOf()
QueryBuilder.OrderByOperandBuilder lowerCaseOf()
Copyright © 2008–2016 JBoss, a division of Red Hat. All rights reserved.