Javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918240 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
52baa809b8
commit
6699e44845
|
@ -818,9 +818,9 @@ public class Validate {
|
||||||
* @param input the character sequence to validate
|
* @param input the character sequence to validate
|
||||||
* @param pattern regular expression pattern
|
* @param pattern regular expression pattern
|
||||||
* @param message the exception message
|
* @param message the exception message
|
||||||
* @param optional values to replace in the exception message
|
* @param values (optional) values to replace in the exception message
|
||||||
* @throws IllegalArgumentException if the character sequence does not match the pattern
|
* @throws IllegalArgumentException if the character sequence does not match the pattern
|
||||||
* @see #matchesPattern(String, String)
|
* @see #matchesPattern(CharSequence, String)
|
||||||
*/
|
*/
|
||||||
public static void matchesPattern(CharSequence input, String pattern, String message, Object... values)
|
public static void matchesPattern(CharSequence input, String pattern, String message, Object... values)
|
||||||
{
|
{
|
||||||
|
@ -861,7 +861,7 @@ public class Validate {
|
||||||
* @param start the inclusive start value
|
* @param start the inclusive start value
|
||||||
* @param end the inclusive end value
|
* @param end the inclusive end value
|
||||||
* @param message the exception message
|
* @param message the exception message
|
||||||
* @param optional values to replace in the exception message
|
* @param values to replace in the exception message (optional)
|
||||||
* @throws IllegalArgumentException if the value falls out of the boundaries
|
* @throws IllegalArgumentException if the value falls out of the boundaries
|
||||||
* @see #inclusiveBetween(Object, Object, Comparable)
|
* @see #inclusiveBetween(Object, Object, Comparable)
|
||||||
*/
|
*/
|
||||||
|
@ -904,7 +904,7 @@ public class Validate {
|
||||||
* @param start the exclusive start value
|
* @param start the exclusive start value
|
||||||
* @param end the exclusive end value
|
* @param end the exclusive end value
|
||||||
* @param message the exception message
|
* @param message the exception message
|
||||||
* @param optional values to replace in the exception message
|
* @param values to replace in the exception message (optional)
|
||||||
* @throws IllegalArgumentException if the value falls out of the boundaries
|
* @throws IllegalArgumentException if the value falls out of the boundaries
|
||||||
* @see #exclusiveBetween(Object, Object, Comparable)
|
* @see #exclusiveBetween(Object, Object, Comparable)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue