()
| 136 | return "<".equals(getJoinType()); |
| 137 | } |
| 138 | public boolean isRightJoin() { |
| 139 | return ">".equals(getJoinType()); |
| 140 | } |
| 141 | public boolean isCrossJoin() { |
| 142 | return "*".equals(getJoinType()); |
| 143 | } |
nothing calls this directly
no test coverage detected