()
| 133 | return "@".equals(getJoinType()); |
| 134 | } |
| 135 | public boolean isLeftJoin() { |
| 136 | return "<".equals(getJoinType()); |
| 137 | } |
| 138 | public boolean isRightJoin() { |
| 139 | return ">".equals(getJoinType()); |
| 140 | } |
nothing calls this directly
no test coverage detected