openllet.owlapi.OWL.set()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(4.0k)|赞(0)|评价(0)|浏览(106)

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

OWL.set介绍

暂无

代码示例

代码示例来源:origin: com.github.galigator.openllet/openllet-owlapi

public static OWLDisjointDataPropertiesAxiom disjointProperties(final OWLDataPropertyExpression d1, final OWLDataPropertyExpression d2)
{
  return _factory.getOWLDisjointDataPropertiesAxiom(set(d1, d2));
}

代码示例来源:origin: com.github.galigator.openllet/openllet-owlapi

public static OWLDisjointObjectPropertiesAxiom disjointProperties(final OWLObjectPropertyExpression d1, final OWLObjectPropertyExpression d2)
{
  return _factory.getOWLDisjointObjectPropertiesAxiom(set(d1, d2));
}

代码示例来源:origin: com.github.galigator.openllet/openllet-owlapi

public static OWLObjectUnionOf or(final OWLClassExpression... descriptions)
{
  return _factory.getOWLObjectUnionOf(set(descriptions));
}

代码示例来源:origin: com.github.galigator.openllet/openllet-owlapi

public static OWLObjectIntersectionOf and(final OWLClassExpression... descriptions)
{
  return _factory.getOWLObjectIntersectionOf(set(descriptions));
}

代码示例来源:origin: com.github.galigator.openllet/openllet-owlapi

public static OWLDifferentIndividualsAxiom differentFrom(final OWLIndividual i1, final OWLIndividual i2)
{
  return _factory.getOWLDifferentIndividualsAxiom(set(i1, i2));
}

代码示例来源:origin: com.github.galigator.openllet/openllet-owlapi

public static OWLDataUnionOf dataOr(final OWLDataRange... descriptions)
{
  return _factory.getOWLDataUnionOf(set(descriptions));
}

代码示例来源:origin: Galigator/openllet

public static OWLDataIntersectionOf dataAnd(final OWLDataRange... descriptions)
{
  return _factory.getOWLDataIntersectionOf(set(descriptions));
}

代码示例来源:origin: Galigator/openllet

public static OWLDataOneOf oneOf(final OWLLiteral... constants)
{
  return _factory.getOWLDataOneOf(set(constants));
}

代码示例来源:origin: Galigator/openllet

public static OWLObjectUnionOf or(final OWLClassExpression... descriptions)
{
  return _factory.getOWLObjectUnionOf(set(descriptions));
}

代码示例来源:origin: Galigator/openllet

public static OWLObjectIntersectionOf and(final OWLClassExpression... descriptions)
{
  return _factory.getOWLObjectIntersectionOf(set(descriptions));
}

代码示例来源:origin: Galigator/openllet

public static OWLDisjointDataPropertiesAxiom disjointProperties(final OWLDataPropertyExpression d1, final OWLDataPropertyExpression d2)
{
  return _factory.getOWLDisjointDataPropertiesAxiom(set(d1, d2));
}

代码示例来源:origin: Galigator/openllet

public static OWLEquivalentObjectPropertiesAxiom equivalentProperties(final OWLObjectPropertyExpression p1, final OWLObjectPropertyExpression p2)
{
  return _factory.getOWLEquivalentObjectPropertiesAxiom(set(p1, p2));
}

代码示例来源:origin: Galigator/openllet

public static OWLDataUnionOf dataOr(final OWLDataRange... descriptions)
{
  return _factory.getOWLDataUnionOf(set(descriptions));
}

代码示例来源:origin: Galigator/openllet

public static OWLEquivalentObjectPropertiesAxiom equivalentProperties(final OWLObjectPropertyExpression p1, final OWLObjectPropertyExpression p2)
{
  return _factory.getOWLEquivalentObjectPropertiesAxiom(set(p1, p2));
}

代码示例来源:origin: Galigator/openllet

public static OWLObjectOneOf oneOf(final OWLIndividual... individuals)
{
  return _factory.getOWLObjectOneOf(set(individuals));
}

代码示例来源:origin: Galigator/openllet

public static OWLDifferentIndividualsAxiom differentFrom(final OWLIndividual i1, final OWLIndividual i2)
{
  return _factory.getOWLDifferentIndividualsAxiom(set(i1, i2));
}

代码示例来源:origin: Galigator/openllet

public static OWLObjectOneOf oneOf(final OWLIndividual... individuals)
{
  return _factory.getOWLObjectOneOf(set(individuals));
}

代码示例来源:origin: Galigator/openllet

public static OWLSameIndividualAxiom sameAs(final OWLIndividual i1, final OWLIndividual i2)
{
  return _factory.getOWLSameIndividualAxiom(set(i1, i2));
}

代码示例来源:origin: Galigator/openllet

public static OWLEquivalentClassesAxiom equivalentClasses(final OWLClassExpression d1, final OWLClassExpression d2)
{
  return _factory.getOWLEquivalentClassesAxiom(set(d1, d2));
}

代码示例来源:origin: Galigator/openllet

public static OWLSameIndividualAxiom sameAs(final OWLIndividual i1, final OWLIndividual i2)
{
  return _factory.getOWLSameIndividualAxiom(set(i1, i2));
}

相关文章