![JAR search and dependency download from the Maven repository](/logo.png)
com.samskivert.depot.clause.ForUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of depot Show documentation
Show all versions of depot Show documentation
A library for relational-database-based persistence in Java.
The newest version!
//
// Depot library - a Java relational persistence library
// https://github.com/threerings/depot/blob/master/LICENSE
package com.samskivert.depot.clause;
import java.util.Collection;
import com.samskivert.depot.PersistentRecord;
import com.samskivert.depot.impl.FragmentVisitor;
/**
* Represents a FOR UPDATE clause.
*/
public class ForUpdate implements QueryClause
{
// from SQLExpression
public Object accept (FragmentVisitor> builder)
{
return builder.visit(this);
}
// from SQLExpression
public void addClasses (Collection> classSet)
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy