()
| 139 | return ">".equals(getJoinType()); |
| 140 | } |
| 141 | public boolean isCrossJoin() { |
| 142 | return "*".equals(getJoinType()); |
| 143 | } |
| 144 | public boolean isInnerJoin() { |
| 145 | return "&".equals(getJoinType()); |
| 146 | } |
nothing calls this directly
no test coverage detected