org.carewebframework.common.StrUtil.strAppend()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(94)

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

StrUtil.strAppend介绍

[英]Append a value to a text string, using default separator (comma).
[中]使用默认分隔符(逗号)将值附加到文本字符串。

代码示例

代码示例来源:origin: org.carewebframework/org.carewebframework.common

/**
 * Append a value to a string builder, using specified separator.
 * 
 * @param sb StringBuilder instance to append to.
 * @param value Value to append.
 * @return The StringBuilder instance (for chaining).
 */
public static StringBuilder strAppend(StringBuilder sb, String value) {
  return strAppend(sb, value, ", ");
}

代码示例来源:origin: org.carewebframework/org.carewebframework.common

/**
 * Append a value to a text string, using default separator (comma).
 * 
 * @param text Text string to append to.
 * @param value Value to append.
 * @return Text string with value appended.
 */
public static String strAppend(String text, String value) {
  return strAppend(text, value, ", ");
}

代码示例来源:origin: org.carewebframework/org.carewebframework.vista.ui.vitals

int col = headers.get(pcs[0]).getColumnIndex();
int row = StrUtil.toInt(pcs[1]) - 1;
setValue(col, row, StrUtil.strAppend(getValue(col, row), pcs[2], "; "), null);
lstVitals.getItemAtIndex(row).setVisible(true);

相关文章