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

org.babyfish.jimmer.sql.fetcher.impl.FetcherSelection Maven / Gradle / Ivy

There is a newer version: 0.8.180
Show newest version
package org.babyfish.jimmer.sql.fetcher.impl;

import org.babyfish.jimmer.sql.ast.PropExpression;
import org.babyfish.jimmer.sql.ast.Selection;
import org.babyfish.jimmer.sql.ast.table.spi.PropExpressionImplementor;
import org.babyfish.jimmer.sql.fetcher.Fetcher;
import org.jetbrains.annotations.Nullable;

import java.util.function.Function;

public interface FetcherSelection extends Selection {

    FetchPath getPath();

    Fetcher getFetcher();

    PropExpression.Embedded getEmbeddedPropExpression();

    @Nullable
    Function getConverter();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy