org.apache.felix.ipojo.metadata.Element.toString()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(657)

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

Element.toString介绍

[英]To String method.
[中]使用字符串方法。

代码示例

代码示例来源:origin: apache/felix

  1. /**
  2. * To String method.
  3. * @return the String form of this element.
  4. * @see java.lang.Object#toString()
  5. */
  6. public String toString() {
  7. return toString(0);
  8. }

代码示例来源:origin: org.apache.felix/org.apache.felix.ipojo.metadata

  1. /**
  2. * To String method.
  3. * @return the String form of this element.
  4. * @see java.lang.Object#toString()
  5. */
  6. public String toString() {
  7. return toString(0);
  8. }

代码示例来源:origin: org.apache.felix/org.apache.felix.ipojo

  1. /**
  2. * Gets a printable form of the current component type description.
  3. *
  4. * @return printable form of the component type description
  5. * @see java.lang.Object#toString()
  6. */
  7. public String toString() {
  8. return getDescription().toString();
  9. }

代码示例来源:origin: apache/felix

  1. /**
  2. * Gets a printable form of the current component type description.
  3. *
  4. * @return printable form of the component type description
  5. * @see java.lang.Object#toString()
  6. */
  7. public String toString() {
  8. return getDescription().toString();
  9. }

代码示例来源:origin: org.wisdom-framework/wisdom-monitor

  1. /**
  2. * @return the factory raw architecture.
  3. */
  4. public String getArchitecture() {
  5. return factory.getDescription().toString();
  6. }

代码示例来源:origin: org.wisdom-framework/wisdom-monitor

  1. /**
  2. * @return the raw architecture.
  3. */
  4. public String getArchitecture() {
  5. return architecture.getInstanceDescription().getDescription()
  6. .toString().replace("\t", " ").replace(" ", " ");
  7. }

代码示例来源:origin: org.apache.felix/org.apache.felix.ipojo.metadata

  1. for (int i = 0; i < e.length; i++) {
  2. xml.append("\n");
  3. xml.append(e[i].toString(indent + 1));

代码示例来源:origin: apache/felix

  1. for (int i = 0; i < e.length; i++) {
  2. xml.append("\n");
  3. xml.append(e[i].toString(indent + 1));

代码示例来源:origin: apache/felix

  1. pw.value(factory.getDescription().toString());
  2. pw.endObject();
  3. pw.endObject();

代码示例来源:origin: apache/felix

  1. pw.value(instance.getDescription().toString());

相关文章