org.hibernate.validator.internal.constraintvalidators
Class SizeValidatorForArraysOfDouble
java.lang.Object
org.hibernate.validator.internal.constraintvalidators.SizeValidatorForArraysOfPrimitives
org.hibernate.validator.internal.constraintvalidators.SizeValidatorForArraysOfDouble
- All Implemented Interfaces:
- ConstraintValidator<Size,double[]>
public class SizeValidatorForArraysOfDouble
- extends SizeValidatorForArraysOfPrimitives
- implements ConstraintValidator<Size,double[]>
- Author:
- Hardy Ferentschik
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SizeValidatorForArraysOfDouble
public SizeValidatorForArraysOfDouble()
isValid
public boolean isValid(double[] array,
ConstraintValidatorContext constraintValidatorContext)
- Checks the number of entries in an array.
- Specified by:
isValid in interface ConstraintValidator<Size,double[]>
- Parameters:
array - The array to validate.constraintValidatorContext - context in which the constraint is evaluated.
- Returns:
- Returns
true if the array is null or the number of entries in
array is between the specified min and max values (inclusive),
false otherwise.
Copyright © 2007-2013 Red Hat, Inc. All Rights Reserved