Creates a new ObjectRange. Creates a reversed range if from < to . @param from the first value in the range. @param to the last value in the range.
(Comparable from, Comparable to)
| 69 | * @param to the last value in the range. |
| 70 | */ |
| 71 | public ObjectRange(Comparable from, Comparable to) { |
| 72 | this(from, to, null); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Creates a new {@link ObjectRange} assumes smaller <= larger, else behavior is undefined. |
nothing calls this directly
no test coverage detected