com.infomaximum.database.schema.BaseIntervalIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
The newest version!
package com.infomaximum.database.schema;
import java.util.List;
public abstract class BaseIntervalIndex extends BaseIndex {
BaseIntervalIndex(List sortedIndexedFields, StructEntity parent) {
super(sortedIndexedFields, parent);
}
public abstract List getHashedFields();
public abstract void checkIndexedValueType(Class> valueType);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy