public class SizeValidatorForArraysOfChar extends SizeValidatorForArraysOfPrimitives implements ConstraintValidator<Size,char[]>
max, min
Constructor and Description |
---|
SizeValidatorForArraysOfChar() |
Modifier and Type | Method and Description |
---|---|
boolean |
isValid(char[] array,
ConstraintValidatorContext constraintValidatorContext)
Checks the number of entries in an array.
|
initialize
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
initialize
public boolean isValid(char[] array, ConstraintValidatorContext constraintValidatorContext)
isValid
in interface ConstraintValidator<Size,char[]>
array
- The array to validate.constraintValidatorContext
- context in which the constraint is evaluated.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-2014 Red Hat Middleware, LLC. All Rights Reserved