Package org.hibernate.validator.internal.constraintvalidators.bv

Examples of org.hibernate.validator.internal.constraintvalidators.bv.DecimalMaxValidatorForNumber


    AnnotationDescriptor<DecimalMax> descriptor = new AnnotationDescriptor<DecimalMax>( DecimalMax.class );
    descriptor.setValue( "value", "foobar" );
    descriptor.setValue( "message", "{validator.max}" );
    DecimalMax m = AnnotationFactory.create( descriptor );

    DecimalMaxValidatorForNumber constraint = new DecimalMaxValidatorForNumber();
    try {
      constraint.initialize( m );
      fail();
    }
    catch ( IllegalArgumentException e ) {
      // success
    }
View Full Code Here


    AnnotationDescriptor<DecimalMax> descriptor = new AnnotationDescriptor<DecimalMax>( DecimalMax.class );
    descriptor.setValue( "value", "15.0E0" );
    descriptor.setValue( "message", "{validator.max}" );
    DecimalMax m = AnnotationFactory.create( descriptor );

    DecimalMaxValidatorForNumber constraint = new DecimalMaxValidatorForNumber();
    constraint.initialize( m );
    testMaxValidator( constraint, true );
  }
View Full Code Here

    AnnotationDescriptor<DecimalMax> descriptor = new AnnotationDescriptor<DecimalMax>( DecimalMax.class );
    descriptor.setValue( "value", "foobar" );
    descriptor.setValue( "message", "{validator.max}" );
    DecimalMax m = AnnotationFactory.create( descriptor );

    DecimalMaxValidatorForNumber constraint = new DecimalMaxValidatorForNumber();
    try {
      constraint.initialize( m );
      fail();
    }
    catch ( IllegalArgumentException e ) {
      // success
    }
View Full Code Here

    descriptor.setValue( "value", "15.0E0" );
    descriptor.setValue( "inclusive", inclusive );
    descriptor.setValue( "message", "{validator.max}" );
    DecimalMax m = AnnotationFactory.create( descriptor );

    DecimalMaxValidatorForNumber constraint = new DecimalMaxValidatorForNumber();
    constraint.initialize( m );
    testMaxValidator( constraint, inclusive );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.validator.internal.constraintvalidators.bv.DecimalMaxValidatorForNumber

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.