Package org.hibernate.validator.internal.metadata.descriptor

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


    return ( (Object[]) parent )[index];
  }

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


    return ( (Object[]) parent )[index];
  }

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

  public int getIndex() {
    return index;
  }

  public ParameterDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ParameterDescriptorImpl(
        getType(),
        index,
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
View Full Code Here

    return ( (Object[]) parent )[index];
  }

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

    return ElementType.PARAMETER;
  }

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

  public int getIndex() {
    return index;
  }

  public ParameterDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ParameterDescriptorImpl(
        getType(),
        index,
        getName(),
        asDescriptors( getConstraints() ),
        isCascading(),
View Full Code Here

    return this.typeArgumentsConstraints;
  }

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

    return ( (Object[]) parent )[index];
  }

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

    return ( (Object[]) parent )[index];
  }

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

TOP

Related Classes of org.hibernate.validator.internal.metadata.descriptor.ParameterDescriptorImpl

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.