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

Method isFullJoin

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

Source from the content-addressed store, hash-verified

145 return "&".equals(getJoinType());
146 }
147 public boolean isFullJoin() {
148 String jt = getJoinType();
149 return "".equals(jt) || "|".equals(jt);
150 }
151 public boolean isOuterJoin() {
152 return "!".equals(getJoinType());
153 }

Callers

nothing calls this directly

Calls 2

getJoinTypeMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected