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

com.dream.flex.def.ForUpdateDef Maven / Gradle / Ivy

The newest version!
package com.dream.flex.def;

import com.dream.antlr.smt.ForUpdateNoWaitStatement;
import com.dream.antlr.smt.ForUpdateStatement;

public interface ForUpdateDef extends QueryDef {

    default Query forUpdate() {
        ForUpdateStatement forUpdateStatement = new ForUpdateStatement();
        statement().setForUpdateStatement(forUpdateStatement);
        return (Query) creatorFactory().newQueryDef(statement());
    }

    default Query forUpdateNoWait() {
        ForUpdateStatement forUpdateStatement = new ForUpdateNoWaitStatement();
        statement().setForUpdateStatement(forUpdateStatement);
        return (Query) creatorFactory().newQueryDef(statement());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy