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

org.infinispan.commons.configuration.Self Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev03
Show newest version
package org.infinispan.commons.configuration;

/**
 * This interface simplifies the task of writing fluent builders which need to inherit from
 * other builders (abstract or concrete). It overcomes Java's limitation of not being able to
 * return an instance of a class narrowed to the class itself. It should be used by all {@link Builder}
 * classes which require inheritance.
 *
 * @author Tristan Tarrant
 * @since 5.2
 */
public interface Self> {
   S self();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy