Searched defs:lower (Results 1 - 9 of 9) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/nodes/
H A DTermRangeQueryNode.java37 * @param lower
38 * the lower bound
42 * <code>true</code> if the lower bound is inclusive, otherwise,
48 public TermRangeQueryNode(FieldQueryNode lower, argument
50 setBounds(lower, upper, lowerInclusive, upperInclusive);
H A DNumericRangeQueryNode.java42 * @param lower the lower bound
44 * @param lowerInclusive <code>true</code> if the lower bound is inclusive, otherwise, <code>false</code>
46 * @param numericConfig the {@link NumericConfig} that represents associated with the upper and lower bounds
50 public NumericRangeQueryNode(NumericQueryNode lower, NumericQueryNode upper, argument
52 setBounds(lower, upper, lowerInclusive, upperInclusive, numericConfig);
75 * Sets the upper and lower bounds of this range query node and the
78 * @param lower the lower bound
80 * @param lowerInclusive <code>true</code> if the lower boun
85 setBounds(NumericQueryNode lower, NumericQueryNode upper, boolean lowerInclusive, boolean upperInclusive, NumericConfig numericConfig) argument
[all...]
H A DRangeQueryNode.java47 * @param lower
50 public RangeQueryNode(ParametricQueryNode lower, ParametricQueryNode upper, argument
53 super(lower, upper, lower.getOperator() == CompareOperator.LE, upper
71 * Sets lower and upper bounds. The method signature expects
72 * {@link FieldQueryNode} objects as lower and upper, however,
74 * if a non {@link ParametricQueryNode} is passed as lower and upper.
76 * @param lower a {@link ParametricQueryNode} object
78 * @param lowerInclusive <code>true</code> if lower bound is inclusive, otherwise, <code>false</code>
81 * @throws IllegalArgumentException if lower o
86 setBounds(FieldQueryNode lower, FieldQueryNode upper, boolean lowerInclusive, boolean upperInclusive) argument
[all...]
H A DAbstractRangeQueryNode.java33 * the type of the range query bounds (lower and upper)
60 T lower = getLowerBound();
63 if (lower != null) {
64 field = lower.getField();
80 T lower = getLowerBound();
83 if (lower != null) {
84 lower.setField(fieldName);
94 * Returns the lower bound node.
96 * @return the lower bound node.
114 * Returns whether the lower boun
144 setBounds(T lower, T upper, boolean lowerInclusive, boolean upperInclusive) argument
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/sinks/
H A DTokenRangeSinkFilter.java26 * Counts the tokens as they go by and saves to the internal list those between the range of lower and upper, exclusive of upper
30 private int lower; field in class:TokenRangeSinkFilter
34 public TokenRangeSinkFilter(int lower, int upper) { argument
35 this.lower = lower;
43 if (count >= lower && count < upper){
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DSorterTemplate.java152 second_cut = lower(pivot, hi, first_cut);
182 private int lower(int lo, int hi, int val) { method in class:SorterTemplate
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestNumericUtils.java86 // check the prefix encoding, lower precision should have the difference to original value equal to the lower removed bits
123 // check the prefix encoding, lower precision should have the difference to original value equal to the lower removed bits
210 private void assertLongRangeSplit(final long lower, final long upper, int precisionStep, argument
214 final OpenBitSet bits=useBitSet ? new OpenBitSet(upper-lower+1) : null;
221 assertTrue("min, max should be inside bounds", min>=lower && min<=upper && max>=lower && max<=upper);
223 assertFalse("ranges should not overlap", bits.getAndSet(l-lower) );
237 }, precisionStep, lower, uppe
451 assertIntRangeSplit(final int lower, final int upper, int precisionStep, final boolean useBitSet, final Iterable<Integer> expectedBounds, final Iterable<Integer> expectedShifts ) argument
[all...]
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/util/
H A DTestNumericUtils.java86 // check the prefix encoding, lower precision should have the difference to original value equal to the lower removed bits
123 // check the prefix encoding, lower precision should have the difference to original value equal to the lower removed bits
210 private void assertLongRangeSplit(final long lower, final long upper, int precisionStep, argument
214 final OpenBitSet bits=useBitSet ? new OpenBitSet(upper-lower+1) : null;
221 assertTrue("min, max should be inside bounds", min>=lower && min<=upper && max>=lower && max<=upper);
223 assertFalse("ranges should not overlap", bits.getAndSet(l-lower) );
237 }, precisionStep, lower, uppe
451 assertIntRangeSplit(final int lower, final int upper, int precisionStep, final boolean useBitSet, final Iterable<Integer> expectedBounds, final Iterable<Integer> expectedShifts ) argument
[all...]
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/
H A DSolrQuery.java102 public SolrQuery setTermsLower(String lower) { argument
103 this.set(TermsParams.TERMS_LOWER, lower);

Completed in 19 milliseconds