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

com.tavianator.sangria.listbinder.ListBinderBuilder Maven / Gradle / Ivy

The newest version!
package com.tavianator.sangria.listbinder;

import com.tavianator.sangria.core.Priority;

/**
 * Fluent builder interface.
 *
 * @author Tavian Barnes ([email protected])
 * @version 1.1
 * @since 1.1
 */
public interface ListBinderBuilder {
    /**
     * @return A {@link ListBinder} with the default priority.
     * @see Priority
     */
    ListBinder withDefaultPriority();

    /**
     * @return A {@link ListBinder} with the given priority.
     * @see Priority
     */
    ListBinder withPriority(int weight, int... weights);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy