
br.com.anteros.persistence.parameter.VersionNamedParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Persistence-Core Show documentation
Show all versions of Anteros-Persistence-Core Show documentation
Anteros Persistence Core for Java.
The newest version!
package br.com.anteros.persistence.parameter;
import br.com.anteros.persistence.metadata.annotation.type.TemporalType;
public class VersionNamedParameter extends NamedParameter {
public VersionNamedParameter(String name, Object value, boolean key) {
super(name, value, key);
}
public VersionNamedParameter(String name, Object value, TemporalType temporalType) {
super(name, value, temporalType);
}
public VersionNamedParameter(String name, Object value) {
super(name, value);
}
public VersionNamedParameter(String name) {
super(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy