本文整理汇总了Java中com.sleepycat.persist.model.SecondaryKey类的典型用法代码示例。如果您正苦于以下问题:Java SecondaryKey类的具体用法?Java SecondaryKey怎么用?Java SecondaryKey使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SecondaryKey类属于com.sleepycat.persist.model包,在下文中一共展示了SecondaryKey类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: BerkeleyAccess
import com.sleepycat.persist.model.SecondaryKey; //导入依赖的package包/类
/**
*
*/
public BerkeleyAccess(BerkeleyStore berkeleyStore) {
this.store = checkNotNull(berkeleyStore);
Pair<Class<PK>, Class<E>> clazzPair = getGenericSuperclass(getClass().getGenericSuperclass());
this.primaryKeyClass = clazzPair.getL();
this.entityClass = clazzPair.getR();
if (log.isDebugEnabled()) {
log.debug(String.format("EntityStore %s: %s data access initialized.", berkeleyStore.getStoreName(), entityClass.getName()));
}
//Register a secondary index for a given primary index and secondary key, opening it if necessary.
for (Field field : entityClass.getDeclaredFields()) {
if (null != field.getAnnotation(SecondaryKey.class)) {
registerSK(field.getType(), field.getName());
if (log.isDebugEnabled()) {
log.debug("Auto register a secondary index: " + field.toGenericString());
}
}
}
}