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


Java ValueFactoryImpl.createURI方法代码示例

本文整理汇总了Java中org.openrdf.model.impl.ValueFactoryImpl.createURI方法的典型用法代码示例。如果您正苦于以下问题:Java ValueFactoryImpl.createURI方法的具体用法?Java ValueFactoryImpl.createURI怎么用?Java ValueFactoryImpl.createURI使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.openrdf.model.impl.ValueFactoryImpl的用法示例。


在下文中一共展示了ValueFactoryImpl.createURI方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ValueOfMarshall

import org.openrdf.model.impl.ValueFactoryImpl; //导入方法依赖的package包/类
public ValueOfMarshall(ValueFactory vf, Class<T> type)
		throws NoSuchMethodException {
	this.vf = vf;
	ValueFactoryImpl uf = ValueFactoryImpl.getInstance();
	this.datatype = uf.createURI("java:", type.getName());
	try {
		this.valueOfMethod = type.getDeclaredMethod("valueOf",
				new Class[] { String.class });
		if (!Modifier.isStatic(valueOfMethod.getModifiers()))
			throw new NoSuchMethodException("valueOf Method is not static");
		if (!type.equals(valueOfMethod.getReturnType()))
			throw new NoSuchMethodException("Invalid return type");
	} catch (NoSuchMethodException e) {
		try {
			this.valueOfMethod = type.getDeclaredMethod("getInstance",
					new Class[] { String.class });
			if (!Modifier.isStatic(valueOfMethod.getModifiers()))
				throw new NoSuchMethodException(
						"getInstance Method is not static");
			if (!type.equals(valueOfMethod.getReturnType()))
				throw new NoSuchMethodException("Invalid return type");
		} catch (NoSuchMethodException e2) {
			throw e;
		}
	}
}
 
开发者ID:anno4j,项目名称:anno4j,代码行数:27,代码来源:ValueOfMarshall.java

示例2: readFields

import org.openrdf.model.impl.ValueFactoryImpl; //导入方法依赖的package包/类
@Override
public void readFields(DataInput dataInput) throws IOException {
    ValueFactoryImpl vfi = new ValueFactoryImpl();
    String data = dataInput.readLine();
    String dataTypeString = dataInput.readLine();
    URI dataType = vfi.createURI(dataTypeString);
    ryatype.setData(data);
    ryatype.setDataType(dataType);
}
 
开发者ID:apache,项目名称:incubator-rya,代码行数:10,代码来源:RyaTypeWritable.java

示例3: entitiesFor

import org.openrdf.model.impl.ValueFactoryImpl; //导入方法依赖的package包/类
private List<Entity> entitiesFor(String identifier) {
    ValueFactoryImpl vf = ValueFactoryImpl.getInstance();

    Collection<Statement> statements = asList(
            vf.createStatement(
                    vf.createURI("http://" + identifier),
                    vf.createURI("http://predicate/a"),
                    vf.createLiteral("object value a")
            ),
            vf.createStatement(
                    vf.createURI("http://" + identifier),
                    vf.createURI("http://predicate/b"),
                    vf.createLiteral("object value b")
            ),
            vf.createStatement(
                    vf.createURI("http://" + identifier),
                    vf.createURI("http://predicate/c"),
                    vf.createLiteral("object value c")
            )
    );
    Resource[] graphs = new Resource[]{vf.createURI("http://foo/graph/" + identifier)};
    Entity entity = new Entity(statements, graphs);


    Collection<Statement> graphStatements = asList(
            vf.createStatement(
                    vf.createURI("http://foo/graph/" + identifier),
                    vf.createURI("http://graph/timestamp"),
                    vf.createLiteral(System.currentTimeMillis())
            ),
            vf.createStatement(
                    vf.createURI("http://foo/graph/" + identifier),
                    vf.createURI("http://graph/version"),
                    vf.createLiteral("the graph version")
            )
    );
    Resource[] graphContext = new Resource[]{vf.createURI("http://graph/meta")};
    Entity entity1 = new Entity(graphStatements, graphContext);

    return asList(entity, entity1);
}
 
开发者ID:marklogic,项目名称:marklogic-sesame,代码行数:42,代码来源:MultiThreadedPersistenceTest.java


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