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

io.questdb.cairo.TableFlagResolver Maven / Gradle / Ivy

The newest version!
package io.questdb.cairo;

import org.jetbrains.annotations.NotNull;

public interface TableFlagResolver {
    default boolean isProtected(@NotNull CharSequence tableName) {
        return false;
    }

    boolean isPublic(@NotNull CharSequence tableName);

    boolean isSystem(@NotNull CharSequence tableName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy