Package org.hivedb.annotations

Examples of org.hivedb.annotations.DataIndexDelegate


    return
        Transform.toOrderedMap(
            new Unary<String, Entry<String, Entry<EntityIndexConfig, Object>>>() {
              public Entry<String, Entry<EntityIndexConfig, Object>> f(String propertyName) {
                EntityIndexConfig entityIndexConfig = resolveEntityIndexConfig(propertyName);
                DataIndexDelegate dataIndexDelegate = AnnotationHelper.getAnnotationDeeply(clazz, propertyName, DataIndexDelegate.class);
                EntityIndexConfig resolvedEntityIndexConfig = (dataIndexDelegate != null)
                    ? resolveEntityIndexConfig(dataIndexDelegate.value())
                    : entityIndexConfig;
                return new Pair<String, Entry<EntityIndexConfig, Object>>(
                    resolvedEntityIndexConfig.getPropertyName(),
                    new Pair<EntityIndexConfig, Object>(resolvedEntityIndexConfig, propertyNameValueMap.get(propertyName)));
              }
View Full Code Here

TOP

Related Classes of org.hivedb.annotations.DataIndexDelegate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.