tbrugz.util.LongFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqldump Show documentation
Show all versions of sqldump Show documentation
Utility to dump schema and data from a RDBMS
package tbrugz.util;
public class LongFactory extends GenericFactory {
long initialValue = 0L;
@Override
public Long getInstance() {
return initialValue;
}
}