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

Method left

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

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

(SelectStatement left, String as)

Source from the content-addressed store, hash-verified

63 * @return <code>this</code> for chaining.
64 */
65 public JoinStatement left(SelectStatement left, String as) {
66 mLeft = left;
67 mLeftAlias = as;
68
69 return this;
70 }
71
72 /**
73 * Sets the given table as the left side of the join and

Callers 8

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

Calls 1

fromMethod · 0.95

Tested by 3

testFromJoinMethod · 0.76
testPlainTableMethod · 0.76
testOnSubselectMethod · 0.76