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