
com.blazebit.query.spi.QueryContextBuilderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-query-core-api Show documentation
Show all versions of blaze-query-core-api Show documentation
A multi-platform querying library
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Blazebit
*/
package com.blazebit.query.spi;
/**
* Interface implemented by the Blaze-Query provider.
*
* It is invoked to create {@link QueryContextBuilder}.
*
* @author Christian Beikov
* @since 1.0.0
*/
public interface QueryContextBuilderFactory {
/**
* Returns a new {@link QueryContextBuilder}.
*
* @return a new {@link QueryContextBuilder}
*/
QueryContextBuilder creatBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy