Class<?> clazz = classMeta.getMetaClass();
Field[] fields = clazz.getDeclaredFields();
for (Field field : fields) {
field.setAccessible(true);
if (field.isAnnotationPresent(NoSqlIndexed.class)) {
NoSqlIndexed indexAnno = field
.getAnnotation(NoSqlIndexed.class);
boolean byKeyOnly = indexAnno.byKeyOnly();
if (byKeyOnly) {
DboTableMeta cf = new DboTableMeta();
String indexTableName = field.getName() + "To"
+ classMeta.getColumnFamily();