public interface QuerySpace
| Modifier and Type | Interface and Description |
|---|---|
static class |
QuerySpace.Disposition
Enumeration of the different types of QuerySpaces we can have.
|
| Modifier and Type | Method and Description |
|---|---|
QuerySpace.Disposition |
getDisposition()
What type of QuerySpace (more-specific) is this?
|
Iterable<Join> |
getJoins()
Obtain all joins which originate from this QuerySpace, in other words, all the joins which this QuerySpace is
the right-hand-side of.
|
PropertyMapping |
getPropertyMapping()
Get the PropertyMapping for this QuerySpace.
|
QuerySpaces |
getQuerySpaces()
Get the QuerySpaces object that is our owner.
|
String |
getUid()
The uid/alias which uniquely identifies this QuerySpace.
|
String getUid()
QuerySpaces.findQuerySpaceByUid(java.lang.String)QuerySpaces getQuerySpaces()
PropertyMapping getPropertyMapping()
QuerySpace.Disposition getDisposition()
Iterable<Join> getJoins()
Join.getRightHandSide() should point back to this QuerySpace such that
space.getJoins().forEach{ join -> join.getRightHandSide() == space }
is true for all.Copyright © 2001-2013 Red Hat, Inc. All Rights Reserved.