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

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

本文整理了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

/**
 * To String method.
 * @return the String form of this element.
 * @see java.lang.Object#toString()
 */
public String toString() {
  return toString(0);
}

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

/**
 * To String method.
 * @return the String form of this element.
 * @see java.lang.Object#toString()
 */
public String toString() {
  return toString(0);
}

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

/**
 * Gets a printable form of the current component type description.
 *
 * @return printable form of the component type description
 * @see java.lang.Object#toString()
 */
public String toString() {
  return getDescription().toString();
}

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

/**
 * Gets a printable form of the current component type description.
 *
 * @return printable form of the component type description
 * @see java.lang.Object#toString()
 */
public String toString() {
  return getDescription().toString();
}

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

/**
 * @return the factory raw architecture.
 */
public String getArchitecture() {
  return factory.getDescription().toString();
}

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

/**
 * @return the raw architecture.
 */
public String getArchitecture() {
  return architecture.getInstanceDescription().getDescription()
      .toString().replace("\t", " ").replace("  ", " ");
}

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

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

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

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

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

pw.value(factory.getDescription().toString());
pw.endObject();
pw.endObject();

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

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

相关文章