All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.validation.metadata.ContainerElementTypeDescriptor Maven / Gradle / Ivy

The newest version!
/*
 * Bean Validation API
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package javax.validation.metadata;

import javax.validation.Valid;

/**
 * Describes a validated container element type, e.g. the element type of {@code List} if it
 * hosts at least one constraint or is marked with {@link Valid}.
 *
 * @author Guillaume Smet
 * @since 2.0
 */
public interface ContainerElementTypeDescriptor extends ElementDescriptor, CascadableDescriptor, ContainerDescriptor {

	/**
	 * Returns the index of the type argument corresponding to this container element type.
	 * @return the index of the type argument corresponding to this container element type
	 */
	Integer getTypeArgumentIndex();

	/**
	 * Returns the container class hosting this container element type.
	 * @return the container class hosting this container element type
	 */
	Class getContainerClass();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy