MCPcopy Create free account
hub / github.com/lodborg/interval-tree / Bounded

Enum Bounded

src/main/java/com/lodborg/intervaltree/Interval.java:35–55  ·  view source on GitHub ↗

An enum representing all possible types of bounded intervals.

Source from the content-addressed store, hash-verified

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 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…