本文整理汇总了Java中com.tinkerpop.frames.modules.typedgraph.TypeValue类的典型用法代码示例。如果您正苦于以下问题:Java TypeValue类的具体用法?Java TypeValue怎么用?Java TypeValue使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
TypeValue类属于com.tinkerpop.frames.modules.typedgraph包,在下文中一共展示了TypeValue类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getFormulaForFrame
import com.tinkerpop.frames.modules.typedgraph.TypeValue; //导入依赖的package包/类
public static String getFormulaForFrame(final Class<?> kind) {
String formname = kind.getSimpleName();
TypeValue tv = kind.getAnnotation(TypeValue.class);
if (tv != null) {
formname = tv.value();
}
return "@LowerCase(Form) = \"" + formname.toLowerCase() + "\"";
}
示例2: registerTypeValue
import com.tinkerpop.frames.modules.typedgraph.TypeValue; //导入依赖的package包/类
@Override
protected void registerTypeValue(final Class<?> type, final Class<?> typeHoldingTypeField) {
TypeValue typeValue = type.getAnnotation(TypeValue.class);
if (Modifier.isAbstract(type.getModifiers())) {
typeDiscriminators.put(new TypeRegistry.TypeDiscriminator(typeHoldingTypeField, type.getCanonicalName()), type);
} else {
Validate.assertArgument(typeValue != null, "The type does not have a @TypeValue annotation: %s", type.getName());
typeDiscriminators.put(new TypeRegistry.TypeDiscriminator(typeHoldingTypeField, typeValue.value()), type);
}
}
示例3: add
import com.tinkerpop.frames.modules.typedgraph.TypeValue; //导入依赖的package包/类
@Override
public TypeRegistry add(final Class<?> type) {
Validate.assertArgument(type.isInterface(), "Not an interface: %s", type.getName());
// Class<?> typeHoldingTypeField = findTypeHoldingTypeField(type);
try {
super.add(type);
// String simpleName = type.getSimpleName();
// if (!simpleNameMap_.containsKey(simpleName)) {
// simpleNameMap_.put(simpleName, type.getName());
// }
localTypeMap_.put(type.getName(), type);
Annotation valChk = type.getAnnotation(TypeValue.class);
if (valChk != null) {
String value = ((TypeValue) valChk).value();
localTypeMap_.put(value, type);
}
addProperties(type);
// System.out.println("TEMP DEBUG Adding type " + type.getName() + " to registry");
for (Class<?> subtype : type.getClasses()) {
Annotation annChk = subtype.getAnnotation(TypeValue.class);
if (annChk != null && subtype.isInterface()) {
add(subtype);
// System.out.println("TEMP DEBUG: TypeHoldingField from " + this.getTypeHoldingTypeField(subtype));
}
}
} catch (Throwable t) {
t.printStackTrace();
}
return this;
}