add javadoc

git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@425599 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2006-07-26 03:51:31 +00:00
parent c2939d7bd4
commit 206cdfc17f
1 changed files with 8 additions and 0 deletions

View File

@ -70,6 +70,8 @@ public class RangeQuery
/**
* Create a bounded range, excluding the endpoints.
*
* @param begin the lower bound value to compare to
* @param end the upper bound value to compare to
* @return the query object
*/
public static RangeQuery createExclusiveRange( QueryTerm begin, QueryTerm end )
@ -80,6 +82,8 @@ public class RangeQuery
/**
* Create a bounded range, including the endpoints.
*
* @param begin the lower bound value to compare to
* @param end the upper bound value to compare to
* @return the query object
*/
public static RangeQuery createInclusiveRange( QueryTerm begin, QueryTerm end )
@ -90,6 +94,7 @@ public class RangeQuery
/**
* Create a range that is greater than or equal to a given term.
*
* @param begin the value to compare to
* @return the query object
*/
public static RangeQuery createGreaterThanOrEqualToRange( QueryTerm begin )
@ -100,6 +105,7 @@ public class RangeQuery
/**
* Create a range that is greater than a given term.
*
* @param begin the value to compare to
* @return the query object
*/
public static RangeQuery createGreaterThanRange( QueryTerm begin )
@ -110,6 +116,7 @@ public class RangeQuery
/**
* Create a range that is less than or equal to a given term.
*
* @param end the value to compare to
* @return the query object
*/
public static RangeQuery createLessThanOrEqualToRange( QueryTerm end )
@ -120,6 +127,7 @@ public class RangeQuery
/**
* Create a range that is less than a given term.
*
* @param end the value to compare to
* @return the query object
*/
public static RangeQuery createLessThanRange( QueryTerm end )