de.lmu.ifi.dbs.elki.utilities.documentation.Reference.authors()方法的使用及代码示例

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

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

Reference.authors介绍

暂无

代码示例

代码示例来源:origin: de.lmu.ifi.dbs.elki/elki

  1. @Override
  2. public int compare(Pair<Reference, TreeSet<Object>> p1, Pair<Reference, TreeSet<Object>> p2) {
  3. final Object o1 = p1.second.first(), o2 = p2.second.first();
  4. int c = COMPARATOR.compare(o1, o2);
  5. if(c == 0) {
  6. Reference r1 = p1.first, r2 = p2.first;
  7. c = compareNull(r1.title(), r2.title());
  8. c = (c != 0) ? c : compareNull(r1.authors(), r2.authors());
  9. c = (c != 0) ? c : compareNull(r1.booktitle(), r2.booktitle());
  10. }
  11. return c;
  12. }

代码示例来源:origin: de.lmu.ifi.dbs.elki/elki

  1. refstreamW.println(indent + "By: " + ref.authors() + " [[br]]");

代码示例来源:origin: elki-project/elki

  1. authorsdiv.setTextContent(ref.authors());
  2. classdd.appendChild(authorsdiv);

代码示例来源:origin: de.lmu.ifi.dbs.elki/elki

  1. authorsdiv.setTextContent(ref.authors());
  2. classdd.appendChild(authorsdiv);

代码示例来源:origin: de.lmu.ifi.dbs.elki/elki

  1. println(buf, width, ref.prefix(), "");
  2. println(buf, width, ref.authors() + ":", "");
  3. println(buf, width, ref.title(), " ");
  4. println(buf, width, "in: " + ref.booktitle(), "");

代码示例来源:origin: elki-project/elki

  1. println(buf, width, ref.prefix());
  2. println(buf, width, ref.authors());
  3. println(buf, width, ref.title());
  4. println(buf, width, ref.booktitle());

代码示例来源:origin: de.lmu.ifi.dbs.elki/elki-core-util

  1. println(buf, width, ref.prefix());
  2. println(buf, width, ref.authors());
  3. println(buf, width, ref.title());
  4. println(buf, width, ref.booktitle());

代码示例来源:origin: elki-project/elki

  1. .append(ref.authors()).lf() //

相关文章