當前位置: 首頁>>代碼示例>>Java>>正文


Java Strings類代碼示例

本文整理匯總了Java中edu.umd.cs.findbugs.util.Strings的典型用法代碼示例。如果您正苦於以下問題:Java Strings類的具體用法?Java Strings怎麽用?Java Strings使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Strings類屬於edu.umd.cs.findbugs.util包,在下文中一共展示了Strings類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: toString

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
@Override
public String toString() {
    String result = super.toString();
    if (decision != null) {
        result = result + ", [decision=" + decision.toString() + "]";
    }
    if (knownValueMap != null) {
        // result = result + ", [known=" + knownValueMap.toString() + "]";
        StringBuilder buf = new StringBuilder();
        buf.append("{");
        boolean first = true;
        for (Map.Entry<ValueNumber, IsNullValue> entry : knownValueMap.entrySet()) {
            if (!first) {
                buf.append(", ");
            } else {
                first = false;
            }
            buf.append(Strings.trimComma(entry.getKey().toString()));
            buf.append("->");
            buf.append(Strings.trimComma(entry.getValue().toString()));
        }
        buf.append("}");
        result += ", [known=" + buf.toString() + "]";
    }
    return result;
}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:27,代碼來源:IsNullValueFrame.java

示例2: toString

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
@Override
public String toString() {
    StringBuilder buf = new StringBuilder();
    buf.append(value != null ? value.toString() : "NoValue,");
    buf.append("ifcmp=");
    buf.append(ifcmpDecision != null ? Strings.trimComma(ifcmpDecision.toString()) : "INFEASIBLE");
    buf.append(",fallthru=");
    buf.append(fallThroughDecision != null ? Strings.trimComma(fallThroughDecision.toString()) : "INFEASIBLE");
    return buf.toString();
}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:11,代碼來源:IsNullConditionDecision.java

示例3: getTextContents

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
public String getTextContents() {
    return memoized(Strings.unescapeXml(textBuffer.toString()));
}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:4,代碼來源:SAXBugCollectionHandler.java

示例4: getRequiredAttribute

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
private String getRequiredAttribute(Attributes attributes, String attrName, String elementName) throws SAXException {
    String value = attributes.getValue(attrName);
    if (value == null)
        throw new SAXException(elementName + " element missing " + attrName + " attribute");
    return memoized(Strings.unescapeXml(value));
}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:7,代碼來源:SAXBugCollectionHandler.java

示例5: writeText

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
public void writeText(String text) throws IOException {
    out.write(Strings.escapeXml(text));
}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:4,代碼來源:OutputStreamXMLOutput.java

示例6: getQuotedAttributeValue

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
/**
 * Return a properly quoted form for an attribute value.
 * 
 * @param rawValue
 *            the raw value of the attribute
 * @return a properly quoted representation of the value
 */
public static String getQuotedAttributeValue(@Nonnull String rawValue) {
    return Strings.escapeXml(rawValue);
}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:11,代碼來源:XMLAttributeList.java

示例7: fromRawString

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
public static StringAnnotation fromRawString(String value) {
    return new StringAnnotation(Strings.escapeLFCRBackSlash(value));

}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:5,代碼來源:StringAnnotation.java

示例8: fromXMLEscapedString

import edu.umd.cs.findbugs.util.Strings; //導入依賴的package包/類
public static StringAnnotation fromXMLEscapedString(String value) {
    return new StringAnnotation(Strings.unescapeXml(value));

}
 
開發者ID:ytus,項目名稱:findbugs-all-the-bugs,代碼行數:5,代碼來源:StringAnnotation.java


注:本文中的edu.umd.cs.findbugs.util.Strings類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。