MCPcopy Index your code
hub / github.com/Tencent/APIJSON / isInnerJoin

Method isInnerJoin

APIJSONORM/src/main/java/apijson/orm/Join.java:144–146  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

142 return "*".equals(getJoinType());
143 }
144 public boolean isInnerJoin() {
145 return "&".equals(getJoinType());
146 }
147 public boolean isFullJoin() {
148 String jt = getJoinType();
149 return "".equals(jt) || "|".equals(jt);

Callers

nothing calls this directly

Calls 2

getJoinTypeMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected