fr.inria.corese.kgram.core.Query.getActualMappings()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(139)

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

Query.getActualMappings介绍

暂无

代码示例

代码示例来源:origin: Wimmics/corese

  1. Mappings anyMappings(Query q, Exp exp) {
  2. Mappings map = q.getActualMappings();
  3. if (map != null) {
  4. return map;
  5. }
  6. return anyMappings(exp);
  7. }

代码示例来源:origin: fr.inria.corese/kgram

  1. /**
  2. * Edge with node in bindings has advantage
  3. */
  4. protected boolean beforeBind(Query q, Exp e2, Exp e1) {
  5. Mappings list = q.getActualMappings();
  6. if (list != null && list.size() > 0) {
  7. Mapping map = list.get(0);
  8. if (e1.bind(map)) {
  9. return false;
  10. }
  11. if (e2.bind(map)) {
  12. return true;
  13. }
  14. }
  15. return false;
  16. }

相关文章