本文整理汇总了Java中de.fuberlin.wiwiss.d2rq.nodes.NodeMaker.projectionSpecs方法的典型用法代码示例。如果您正苦于以下问题:Java NodeMaker.projectionSpecs方法的具体用法?Java NodeMaker.projectionSpecs怎么用?Java NodeMaker.projectionSpecs使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类de.fuberlin.wiwiss.d2rq.nodes.NodeMaker
的用法示例。
在下文中一共展示了NodeMaker.projectionSpecs方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createFrom
import de.fuberlin.wiwiss.d2rq.nodes.NodeMaker; //导入方法依赖的package包/类
static AttributeSet createFrom(NodeMaker nodeMaker)
{
AttributeSet attributes = new AttributeSet();
Set<ProjectionSpec> projectionSpecs = nodeMaker.projectionSpecs();
boolean err = projectionSpecs.isEmpty();
Iterator<ProjectionSpec> projectionIterator = projectionSpecs.iterator();
while (projectionIterator.hasNext() && !err) {
ProjectionSpec projection = (ProjectionSpec) projectionIterator.next();
Set<Attribute> reqAttr = projection.requiredAttributes();
Iterator<Attribute> j = reqAttr.iterator();
while (j.hasNext() && !err) {
Attribute a = (Attribute) j.next();
if (attributes.relationName == null)
attributes.relationName = a.relationName();
else if (!attributes.relationName.equals(a.relationName()))
err = true;
attributes.attributeNames.add(a.attributeName());
}
// if (projection instanceof Attribute) {
// Attribute a = (Attribute) projection;
// if (attributes.relationName == null)
// attributes.relationName = a.relationName();
// else if (!attributes.relationName.equals(a.relationName()))
// err = true;
//
// attributes.attributeNames.add(a.attributeName());
// } else {
// err = true;
// }
}
if (!err)
return attributes;
return null;
}
示例2: getRelationNames
import de.fuberlin.wiwiss.d2rq.nodes.NodeMaker; //导入方法依赖的package包/类
private List<RelationName> getRelationNames(NodeMaker nodeMaker)
{
List<RelationName> result = new ArrayList<RelationName>();
Set<ProjectionSpec> projectionSpecs = nodeMaker.projectionSpecs();
for (ProjectionSpec spec: projectionSpecs) {
for (Attribute a: spec.requiredAttributes()) {
result.add(a.relationName());
}
}
return result;
}