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

co.streamx.fluent.SQL.Oracle.Sequence Maven / Gradle / Ivy

package co.streamx.fluent.SQL.Oracle;

import co.streamx.fluent.notation.Function;
import co.streamx.fluent.notation.Keyword;

public interface Sequence extends Keyword {
    @Function(omitParentheses = true)
    default T CURRVAL() {
        throw new UnsupportedOperationException();
    }

    @Function(omitParentheses = true)
    default T NEXTVAL() {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy