com.bigdata.sparse.AutoIncLongCounter Maven / Gradle / Ivy
package com.bigdata.sparse;
/**
* A singleton object that causes the associated property value to be assigned
* the next higher 64-bit integer value when it is written on the
* {@link SparseRowStore}.
*
* @author Bryan Thompson
* @version $Id$
*/
public class AutoIncLongCounter implements IAutoIncrementCounter {
public static final AutoIncLongCounter INSTANCE = new AutoIncLongCounter();
private AutoIncLongCounter() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy