()
| 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); |
nothing calls this directly
no test coverage detected