org.eclipse.rdf4j.model.util.Literals.getBooleanValue()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(161)

本文整理了Java中org.eclipse.rdf4j.model.util.Literals.getBooleanValue()方法的一些代码示例,展示了Literals.getBooleanValue()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Literals.getBooleanValue()方法的具体详情如下:
包路径:org.eclipse.rdf4j.model.util.Literals
类名称:Literals
方法名:getBooleanValue

Literals.getBooleanValue介绍

[英]Gets the boolean value of the supplied literal. The fallback value is returned in case Literal#booleanValue() throws a NumberFormatException.
[中]获取提供的文本的布尔值。如果Literal#booleanValue()引发NumberFormatException,则返回回退值。

代码示例

代码示例来源:origin: org.eclipse.rdf4j/rdf4j-client

/**
 * Returns the result of {@link #getBooleanValue(Literal, boolean) getBooleanValue((Literal)value,
 * fallback)} in case the supplied value is a literal, returns the fallback value otherwise.
 */
public static boolean getBooleanValue(Value v, boolean fallback) {
  if (v instanceof Literal) {
    return getBooleanValue((Literal)v, fallback);
  }
  else {
    return fallback;
  }
}

代码示例来源:origin: eclipse/rdf4j

/**
 * Returns the result of {@link #getBooleanValue(Literal, boolean) getBooleanValue((Literal)value,
 * fallback)} in case the supplied value is a literal, returns the fallback value otherwise.
 */
public static boolean getBooleanValue(Value v, boolean fallback) {
  if (v instanceof Literal) {
    return getBooleanValue((Literal)v, fallback);
  }
  else {
    return fallback;
  }
}

代码示例来源:origin: org.eclipse.rdf4j/rdf4j-client

boolean readable = Literals.getBooleanValue(bindingSet.getValue("readable"), false);
boolean writable = Literals.getBooleanValue(bindingSet.getValue("writable"), false);

代码示例来源:origin: eclipse/rdf4j

boolean readable = Literals.getBooleanValue(bindingSet.getValue("readable"), false);
boolean writable = Literals.getBooleanValue(bindingSet.getValue("writable"), false);

代码示例来源:origin: eclipse/rdf4j

@Override
public boolean isWritable() throws RepositoryException {
  if (!isInitialized()) {
    throw new IllegalStateException("HTTPRepository not initialized.");
  }
  boolean isWritable = false;
  try (RDF4JProtocolSession client = createHTTPClient()) {
    final String repositoryURL = client.getRepositoryURL();
    try (TupleQueryResult repositoryList = client.getRepositoryList()) {
      while (repositoryList.hasNext()) {
        final BindingSet bindingSet = repositoryList.next();
        final Value uri = bindingSet.getValue("uri");
        if (uri != null && uri.stringValue().equals(repositoryURL)) {
          isWritable = Literals.getBooleanValue(bindingSet.getValue("writable"), false);
          break;
        }
      }
    }
  }
  catch (QueryEvaluationException e) {
    throw new RepositoryException(e);
  }
  catch (IOException e) {
    throw new RepositoryException(e);
  }
  return isWritable;
}

代码示例来源:origin: org.eclipse.rdf4j/rdf4j-repository-http

isWritable = Literals.getBooleanValue(bindingSet.getValue("writable"), false);
break;

代码示例来源:origin: org.eclipse.rdf4j/rdf4j-client

isWritable = Literals.getBooleanValue(bindingSet.getValue("writable"), false);
break;

相关文章