当前位置: 首页>>代码示例>>Java>>正文


Java TypeValue类代码示例

本文整理汇总了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() + "\"";
}
 
开发者ID:OpenNTF,项目名称:org.openntf.domino,代码行数:9,代码来源:DGraph.java

示例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);
	}
}
 
开发者ID:OpenNTF,项目名称:org.openntf.domino,代码行数:11,代码来源:DConfiguration.java

示例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;
}
 
开发者ID:OpenNTF,项目名称:org.openntf.domino,代码行数:32,代码来源:DConfiguration.java


注:本文中的com.tinkerpop.frames.modules.typedgraph.TypeValue类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。