Examples of ReturnValueDescriptorImpl


Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

    return parent;
  }

  @Override
  public ReturnValueDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ReturnValueDescriptorImpl(
        getType(),
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

  @Override
  public ReturnValueDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    Type returnType = getType();

    return returnType.equals( void.class ) ? null : new ReturnValueDescriptorImpl(
        returnType,
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

  }

  private ReturnValueDescriptor returnValueAsDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    Type returnType = getType();

    return returnType.equals( void.class ) ? null : new ReturnValueDescriptorImpl(
        returnType,
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

    return ElementType.METHOD;
  }

  @Override
  public ReturnValueDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ReturnValueDescriptorImpl(
        getType(),
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

    return theValue;
  }

  private ReturnValueDescriptor returnValueAsDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    ReturnValueDescriptor returnValueDescriptor = new ReturnValueDescriptorImpl(
        getType(),
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

    return this.typeArgumentsConstraints;
  }

  @Override
  public ReturnValueDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ReturnValueDescriptorImpl(
        getType(),
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

    return parent;
  }

  @Override
  public ReturnValueDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ReturnValueDescriptorImpl(
        getType(),
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

    return parent;
  }

  @Override
  public ReturnValueDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ReturnValueDescriptorImpl(
        getType(),
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl

    return parent;
  }

  @Override
  public ReturnValueDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ReturnValueDescriptorImpl(
        getType(),
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.