本文整理了Java中org.eclipse.rdf4j.model.util.Literals.createLiteralOrFail()
方法的一些代码示例,展示了Literals.createLiteralOrFail()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Literals.createLiteralOrFail()
方法的具体详情如下:
包路径:org.eclipse.rdf4j.model.util.Literals
类名称:Literals
方法名:createLiteralOrFail
[英]Creates a typed Literal out of the supplied object, mapping the runtime type of the object to the appropriate XML Schema type. If no mapping is available, the method throws a LiteralUtilException. Recognized types are Boolean, Byte, Double, Float, Integer, Long, Short, XMLGregorianCalendar , and Date.
[中]从提供的对象中创建类型化文字,将对象的运行时类型映射到适当的XML架构类型。如果没有可用的映射,该方法将抛出LiteralUtilException。识别的类型有布尔型、字节型、双精度型、浮点型、整数型、长型、短型、XMLGregorianCalendar型和日期型。
代码示例来源:origin: eclipse/rdf4j
while (iter.hasNext()) {
Object o = iter.next();
Value v = o instanceof Value ? (Value)o : Literals.createLiteralOrFail(vf, o);
Statements.consume(vf, current, RDF.FIRST, v, consumer, contexts);
if (iter.hasNext()) {
代码示例来源:origin: org.eclipse.rdf4j/rdf4j-client
while (iter.hasNext()) {
Object o = iter.next();
Value v = o instanceof Value ? (Value)o : Literals.createLiteralOrFail(vf, o);
Statements.consume(vf, current, RDF.FIRST, v, consumer, contexts);
if (iter.hasNext()) {
内容来源于网络,如有侵权,请联系作者删除!