Home | History | Annotate | Download | only in google

Lines Matching defs:Bound

92   enum Bound {
105 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
106 Bound.EXCLUSIVE));
107 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.NO_BOUND,
108 Bound.INCLUSIVE));
109 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
110 Bound.NO_BOUND));
111 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
112 Bound.EXCLUSIVE));
113 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.EXCLUSIVE,
114 Bound.INCLUSIVE));
115 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.INCLUSIVE,
116 Bound.NO_BOUND));
117 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.INCLUSIVE,
118 Bound.EXCLUSIVE));
119 derivedSuites.add(createSubMultisetSuite(parentBuilder, Bound.INCLUSIVE,
120 Bound.INCLUSIVE));
127 SortedMultisetTestSuiteBuilder<E> parentBuilder, final Bound from,
128 final Bound to) {
164 if (from == Bound.NO_BOUND) {
168 if (to == Bound.NO_BOUND) {
182 if (from == Bound.INCLUSIVE) {
185 } else if (from == Bound.EXCLUSIVE) {
189 if (to == Bound.INCLUSIVE) {
191 } else if (to == Bound.EXCLUSIVE) {