Uses of Class
java.lang.StringBuilder
| Package | Description |
|---|---|
| java.lang | |
| libcore.net | |
| libcore.reflect | |
| org.apache.harmony.security.x501 | |
| org.apache.harmony.security.x509 | |
| org.apache.harmony.xml.dom | |
| org.robovm.rt.annotation |
-
Uses of StringBuilder in java.lang
Methods in java.lang that return StringBuilder Modifier and Type Method Description StringBuilderStringBuilder. append(boolean b)Appends the string representation of the specifiedbooleanvalue.StringBuilderStringBuilder. append(char c)Appends the string representation of the specifiedcharvalue.StringBuilderStringBuilder. append(char[] chars)Appends the string representation of the specifiedchar[].StringBuilderStringBuilder. append(char[] str, int offset, int len)Appends the string representation of the specified subset of thechar[].StringBuilderStringBuilder. append(double d)Appends the string representation of the specifieddoublevalue.StringBuilderStringBuilder. append(float f)Appends the string representation of the specifiedfloatvalue.StringBuilderStringBuilder. append(int i)Appends the string representation of the specifiedintvalue.StringBuilderStringBuilder. append(long l)Appends the string representation of the specifiedlongvalue.StringBuilderStringBuilder. append(CharSequence csq)Appends the string representation of the specifiedCharSequence.StringBuilderStringBuilder. append(CharSequence csq, int start, int end)Appends the string representation of the specified subsequence of theCharSequence.StringBuilderStringBuilder. append(Object obj)Appends the string representation of the specifiedObject.StringBuilderStringBuilder. append(String str)Appends the contents of the specified string.StringBuilderStringBuilder. append(StringBuffer sb)Appends the contents of the specifiedStringBuffer.static StringBuilderIntegralToString. appendByteAsHex(StringBuilder sb, byte b, boolean upperCase)StringBuilderStringBuilder. appendCodePoint(int codePoint)Appends the encoded Unicode code point.StringBuilderStringBuilder. delete(int start, int end)Deletes a sequence of characters specified bystartandend.StringBuilderStringBuilder. deleteCharAt(int index)Deletes the character at the specified index.StringBuilderStringBuilder. insert(int offset, boolean b)Inserts the string representation of the specifiedbooleanvalue at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, char c)Inserts the string representation of the specifiedcharvalue at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, char[] ch)Inserts the string representation of the specifiedchar[]at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, char[] str, int strOffset, int strLen)Inserts the string representation of the specified subsequence of thechar[]at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, double d)Inserts the string representation of the specifieddoublevalue at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, float f)Inserts the string representation of the specifiedfloatvalue at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, int i)Inserts the string representation of the specifiedintvalue at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, long l)Inserts the string representation of the specifiedlongvalue at the specifiedoffset.StringBuilderStringBuilder. insert(int offset, CharSequence s)Inserts the string representation of the specifiedCharSequenceat the specifiedoffset.StringBuilderStringBuilder. insert(int offset, CharSequence s, int start, int end)Inserts the string representation of the specified subsequence of theCharSequenceat the specifiedoffset.StringBuilderStringBuilder. insert(int offset, Object obj)Inserts the string representation of the specifiedObjectat the specifiedoffset.StringBuilderStringBuilder. insert(int offset, String str)Inserts the specified string at the specifiedoffset.StringBuilderStringBuilder. replace(int start, int end, String string)Replaces the specified subsequence in this builder with the specified string.StringBuilderStringBuilder. reverse()Reverses the order of characters in this builder.Methods in java.lang with parameters of type StringBuilder Modifier and Type Method Description static StringBuilderIntegralToString. appendByteAsHex(StringBuilder sb, byte b, boolean upperCase)Constructors in java.lang with parameters of type StringBuilder Constructor Description String(StringBuilder stringBuilder)Creates aStringfrom the contents of the specifiedStringBuilder. -
Uses of StringBuilder in libcore.net
Methods in libcore.net with parameters of type StringBuilder Modifier and Type Method Description voidUriCodec. appendEncoded(StringBuilder builder, String s)voidUriCodec. appendPartiallyEncoded(StringBuilder builder, String s) -
Uses of StringBuilder in libcore.reflect
Methods in libcore.reflect with parameters of type StringBuilder Modifier and Type Method Description static voidTypes. appendArrayGenericType(StringBuilder out, Type[] types)Appends names of thetypestooutseparated by commas.static voidTypes. appendGenericType(StringBuilder out, Type type)static voidTypes. appendTypeName(StringBuilder out, Class<?> c) -
Uses of StringBuilder in org.apache.harmony.security.x501
Methods in org.apache.harmony.security.x501 with parameters of type StringBuilder Modifier and Type Method Description voidAttributeTypeAndValue. appendName(String attrFormat, StringBuilder sb)Appends AttributeTypeAndValue string representationvoidAttributeValue. appendQEString(StringBuilder sb) -
Uses of StringBuilder in org.apache.harmony.security.x509
Methods in org.apache.harmony.security.x509 with parameters of type StringBuilder Modifier and Type Method Description voidAlgorithmIdentifier. dumpValue(StringBuilder sb)voidAlternativeName. dumpValue(StringBuilder sb, String prefix)voidAuthorityKeyIdentifier. dumpValue(StringBuilder sb, String prefix)voidBasicConstraints. dumpValue(StringBuilder sb, String prefix)voidCertificateIssuer. dumpValue(StringBuilder sb, String prefix)voidCertificatePolicies. dumpValue(StringBuilder sb, String prefix)voidCRLDistributionPoints. dumpValue(StringBuilder sb, String prefix)voidCRLNumber. dumpValue(StringBuilder sb, String prefix)voidDistributionPoint. dumpValue(StringBuilder sb, String prefix)voidDistributionPointName. dumpValue(StringBuilder sb, String prefix)voidExtendedKeyUsage. dumpValue(StringBuilder sb, String prefix)voidExtension. dumpValue(StringBuilder sb, String prefix)voidExtensions. dumpValue(StringBuilder sb, String prefix)voidExtensionValue. dumpValue(StringBuilder sb)voidExtensionValue. dumpValue(StringBuilder sb, String prefix)voidGeneralNames. dumpValue(StringBuilder sb, String prefix)voidGeneralSubtree. dumpValue(StringBuilder sb, String prefix)voidInfoAccessSyntax. dumpValue(StringBuilder sb, String prefix)voidInhibitAnyPolicy. dumpValue(StringBuilder sb, String prefix)voidInvalidityDate. dumpValue(StringBuilder sb, String prefix)voidIssuingDistributionPoint. dumpValue(StringBuilder sb, String prefix)voidKeyUsage. dumpValue(StringBuilder sb, String prefix)voidNameConstraints. dumpValue(StringBuilder sb, String prefix)voidPolicyConstraints. dumpValue(StringBuilder sb, String prefix)voidPolicyInformation. dumpValue(StringBuilder sb)voidReasonCode. dumpValue(StringBuilder sb, String prefix)voidReasonFlags. dumpValue(StringBuilder sb, String prefix)voidSubjectKeyIdentifier. dumpValue(StringBuilder sb, String prefix)voidTBSCertificate. dumpValue(StringBuilder sb)voidTBSCertList. dumpValue(StringBuilder sb)voidTBSCertList.RevokedCertificate. dumpValue(StringBuilder sb, String prefix) -
Uses of StringBuilder in org.apache.harmony.xml.dom
Methods in org.apache.harmony.xml.dom with parameters of type StringBuilder Modifier and Type Method Description voidCharacterDataImpl. appendDataTo(StringBuilder stringBuilder)Appends this node's text content to the given builder. -
Uses of StringBuilder in org.robovm.rt.annotation
Methods in org.robovm.rt.annotation with parameters of type StringBuilder Modifier and Type Method Description protected abstract voidAnnotation. membersToString(StringBuilder sb)protected voidAnnotation. memberToString(StringBuilder sb, Object value, String memberName, boolean first)