MCPcopy Create free account
hub / github.com/androrm/androrm / right

Method right

src/src/com/orm/androrm/statement/JoinStatement.java:112–117  ·  view source on GitHub ↗

Creates the right side of the join from a subselect and masks it with the given alias. @param right Right side of the join as SelectStatement subselect. @param as Alias for the right side. @return this for chaining.

(SelectStatement right, String as)

Source from the content-addressed store, hash-verified

110 * @return <code>this</code> for chaining.
111 */
112 public JoinStatement right(SelectStatement right, String as) {
113 mRight = right;
114 mRightAlias = as;
115
116 return this;
117 }
118
119 /**
120 * Sets the given table as the right side of the join and

Callers 8

buildQueryMethod · 0.95
testFromJoinMethod · 0.80
testPlainTableMethod · 0.80
testOnSubselectMethod · 0.80
filterMethod · 0.80
resolveRelationFieldMethod · 0.80
getJoinMethod · 0.80
getRightJoinSideMethod · 0.80

Calls 1

fromMethod · 0.95

Tested by 3

testFromJoinMethod · 0.64
testPlainTableMethod · 0.64
testOnSubselectMethod · 0.64