An enum representing all possible types of bounded intervals.
| 33 | * An enum representing all possible types of bounded intervals. |
| 34 | */ |
| 35 | public enum Bounded { |
| 36 | /** |
| 37 | * An interval, in which both start and end point are exclusive. |
| 38 | */ |
| 39 | OPEN, |
| 40 | |
| 41 | /** |
| 42 | * An interval, in which both start and end point are inclusive. |
| 43 | */ |
| 44 | CLOSED, |
| 45 | |
| 46 | /** |
| 47 | * An interval, in which the start is exclusive and the end is inclusive. |
| 48 | */ |
| 49 | CLOSED_RIGHT, |
| 50 | |
| 51 | /** |
| 52 | * An interval, in which the start is inclusive and the end is exclusive. |
| 53 | */ |
| 54 | CLOSED_LEFT |
| 55 | } |
| 56 | |
| 57 | public enum Unbounded { |
| 58 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…