com.evolveum.midpoint.util
Interface EscapeStringBuilder

All Known Implementing Classes:
GenericEscapeStringBuilder, XQueryEscapeStringBuilder

public interface EscapeStringBuilder


Method Summary
 EscapeStringBuilder append(boolean b)
          Appends the string representation of the boolean argument to the sequence.
 EscapeStringBuilder append(char c)
          Appends the string representation of the char argument to this sequence.
 EscapeStringBuilder append(char[] str)
          Appends the string representation of the char array argument to this sequence.
 EscapeStringBuilder append(char[] str, int offset, int len)
          Appends the string representation of a subarray of the char array argument to this sequence.
 EscapeStringBuilder append(CharSequence s)
          Appends the specified character sequence to this Appendable.
 EscapeStringBuilder append(CharSequence s, int start, int end)
          Appends a subsequence of the specified CharSequence to this sequence.
 EscapeStringBuilder append(double d)
          Appends the string representation of the double argument to this sequence.
 EscapeStringBuilder append(float f)
          Appends the string representation of the float argument to this sequence.
 EscapeStringBuilder append(GenericEscapeStringBuilder xsb)
          Appends the specified StringBuilder to this sequence.
 EscapeStringBuilder append(int i)
          Appends the string representation of the int argument to this sequence.
 EscapeStringBuilder append(long lng)
          Appends the string representation of the long argument to this sequence.
 EscapeStringBuilder append(Object obj)
          Appends the string representation of the Object argument.
 EscapeStringBuilder append(String str)
          Appends the specified string to this character sequence.
 EscapeStringBuilder append(StringBuffer sb)
          Appends the specified StringBuffer to this sequence.
 EscapeStringBuilder append(StringBuilder sb)
          Appends the specified StringBuilder to this sequence.
 EscapeStringBuilder appendCodePoint(int codePoint)
          Appends the string representation of the codePoint argument to this sequence.
 int capacity()
          Returns the current capacity.
 char charAt(int index)
          Returns the char value in this sequence at the specified index.
 int codePointAt(int index)
          Returns the character (Unicode code point) at the specified index.
 int codePointBefore(int index)
          Returns the character (Unicode code point) before the specified index.
 int codePointCount(int beginIndex, int endIndex)
          Returns the number of Unicode code points in the specified text range of this sequence.
 EscapeStringBuilder delete(int start, int end)
          Removes the characters in a substring of this sequence.
 EscapeStringBuilder deleteCharAt(int index)
          Removes the char at the specified position in this sequence.
 EscapeStringBuilder eappend(Object o)
          Appends the string representation of the Object.toString() argument and escape value with XML escape
 EscapeStringBuilder eappend(String str)
          Appends the string representation of the String argument and escape value with XML escape
 void ensureCapacity(int minimumCapacity)
          Ensures that the capacity is at least equal to the specified minimum.
 void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
          Characters are copied from this sequence into the destination character array dst.
 int indexOf(String str)
          Returns the index within this string of the first occurrence of the specified substring.
 int indexOf(String str, int fromIndex)
          Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
 EscapeStringBuilder insert(int offset, boolean b)
          Inserts the string representation of the boolean argument into this sequence.
 EscapeStringBuilder insert(int offset, char c)
          Inserts the string representation of the char argument into this sequence.
 EscapeStringBuilder insert(int offset, char[] str)
          Inserts the string representation of the char array argument into this sequence.
 EscapeStringBuilder insert(int index, char[] str, int offset, int len)
          Inserts the string representation of a subarray of the str array argument into this sequence.
 EscapeStringBuilder insert(int dstOffset, CharSequence s)
          Inserts the specified CharSequence into this sequence.
 EscapeStringBuilder insert(int dstOffset, CharSequence s, int start, int end)
          Inserts a subsequence of the specified CharSequence into this sequence.
 EscapeStringBuilder insert(int offset, double d)
          Inserts the string representation of the double argument into this sequence.
 EscapeStringBuilder insert(int offset, float f)
          Inserts the string representation of the float argument into this sequence.
 EscapeStringBuilder insert(int offset, int i)
          Inserts the string representation of the second int argument into this sequence.
 EscapeStringBuilder insert(int offset, long l)
          Inserts the string representation of the long argument into this sequence.
 EscapeStringBuilder insert(int offset, Object obj)
          Inserts the string representation of the Object argument into this character sequence.
 EscapeStringBuilder insert(int offset, String str)
          Inserts the string into this character sequence.
 int lastIndexOf(String str)
          Returns the index within this string of the rightmost occurrence of the specified substring.
 int lastIndexOf(String str, int fromIndex)
          Returns the index within this string of the last occurrence of the specified substring.
 int length()
          Returns the length (character count).
 int offsetByCodePoints(int index, int codePointOffset)
          Returns the index within this sequence that is offset from the given index by codePointOffset code points.
 EscapeStringBuilder replace(int start, int end, String str)
          Replaces the characters in a substring of this sequence with characters in the specified String.
 EscapeStringBuilder reverse()
          Causes this character sequence to be replaced by the reverse of the sequence.
 void setCharAt(int index, char ch)
          The character at the specified index is set to ch.
 void setLength(int newLength)
          Sets the length of the character sequence.
 CharSequence subSequence(int start, int end)
          Returns a new character sequence that is a subsequence of this sequence.
 String substring(int start)
          Returns a new String that contains a subsequence of characters currently contained in this character sequence.
 String substring(int start, int end)
          Returns a new String that contains a subsequence of characters currently contained in this sequence.
 String toString()
          Returns a string representing the data in this sequence.
 StringBuilder toStringBuilder()
          Returns a SSttringBuilder representing the data in this sequence.
 void trimToSize()
          Attempts to reduce storage used for the character sequence.
 

Method Detail

append

EscapeStringBuilder append(boolean b)
Appends the string representation of the boolean argument to the sequence.


append

EscapeStringBuilder append(char c)
Appends the string representation of the char argument to this sequence.


append

EscapeStringBuilder append(char[] str)
Appends the string representation of the char array argument to this sequence.


append

EscapeStringBuilder append(char[] str,
                           int offset,
                           int len)
Appends the string representation of a subarray of the char array argument to this sequence.


append

EscapeStringBuilder append(CharSequence s)
Appends the specified character sequence to this Appendable.


append

EscapeStringBuilder append(CharSequence s,
                           int start,
                           int end)
Appends a subsequence of the specified CharSequence to this sequence.


append

EscapeStringBuilder append(double d)
Appends the string representation of the double argument to this sequence.


append

EscapeStringBuilder append(float f)
Appends the string representation of the float argument to this sequence.


append

EscapeStringBuilder append(int i)
Appends the string representation of the int argument to this sequence.


append

EscapeStringBuilder append(long lng)
Appends the string representation of the long argument to this sequence.


append

EscapeStringBuilder append(Object obj)
Appends the string representation of the Object argument.


append

EscapeStringBuilder append(String str)
Appends the specified string to this character sequence.


append

EscapeStringBuilder append(StringBuffer sb)
Appends the specified StringBuffer to this sequence.


append

EscapeStringBuilder append(StringBuilder sb)
Appends the specified StringBuilder to this sequence.


append

EscapeStringBuilder append(GenericEscapeStringBuilder xsb)
Appends the specified StringBuilder to this sequence.


appendCodePoint

EscapeStringBuilder appendCodePoint(int codePoint)
Appends the string representation of the codePoint argument to this sequence.


capacity

int capacity()
Returns the current capacity.


charAt

char charAt(int index)
Returns the char value in this sequence at the specified index.


codePointAt

int codePointAt(int index)
Returns the character (Unicode code point) at the specified index.


codePointBefore

int codePointBefore(int index)
Returns the character (Unicode code point) before the specified index.


codePointCount

int codePointCount(int beginIndex,
                   int endIndex)
Returns the number of Unicode code points in the specified text range of this sequence.


eappend

EscapeStringBuilder eappend(String str)
Appends the string representation of the String argument and escape value with XML escape


eappend

EscapeStringBuilder eappend(Object o)
Appends the string representation of the Object.toString() argument and escape value with XML escape


delete

EscapeStringBuilder delete(int start,
                           int end)
Removes the characters in a substring of this sequence.


deleteCharAt

EscapeStringBuilder deleteCharAt(int index)
Removes the char at the specified position in this sequence.


ensureCapacity

void ensureCapacity(int minimumCapacity)
Ensures that the capacity is at least equal to the specified minimum.


getChars

void getChars(int srcBegin,
              int srcEnd,
              char[] dst,
              int dstBegin)
Characters are copied from this sequence into the destination character array dst.


indexOf

int indexOf(String str)
Returns the index within this string of the first occurrence of the specified substring.


indexOf

int indexOf(String str,
            int fromIndex)
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.


insert

EscapeStringBuilder insert(int offset,
                           boolean b)
Inserts the string representation of the boolean argument into this sequence.


insert

EscapeStringBuilder insert(int offset,
                           char c)
Inserts the string representation of the char argument into this sequence.


insert

EscapeStringBuilder insert(int offset,
                           char[] str)
Inserts the string representation of the char array argument into this sequence.


insert

EscapeStringBuilder insert(int index,
                           char[] str,
                           int offset,
                           int len)
Inserts the string representation of a subarray of the str array argument into this sequence.


insert

EscapeStringBuilder insert(int dstOffset,
                           CharSequence s)
Inserts the specified CharSequence into this sequence.


insert

EscapeStringBuilder insert(int dstOffset,
                           CharSequence s,
                           int start,
                           int end)
Inserts a subsequence of the specified CharSequence into this sequence.


insert

EscapeStringBuilder insert(int offset,
                           double d)
Inserts the string representation of the double argument into this sequence.


insert

EscapeStringBuilder insert(int offset,
                           float f)
Inserts the string representation of the float argument into this sequence.


insert

EscapeStringBuilder insert(int offset,
                           int i)
Inserts the string representation of the second int argument into this sequence.


insert

EscapeStringBuilder insert(int offset,
                           long l)
Inserts the string representation of the long argument into this sequence.


insert

EscapeStringBuilder insert(int offset,
                           Object obj)
Inserts the string representation of the Object argument into this character sequence.


insert

EscapeStringBuilder insert(int offset,
                           String str)
Inserts the string into this character sequence.


lastIndexOf

int lastIndexOf(String str)
Returns the index within this string of the rightmost occurrence of the specified substring.


lastIndexOf

int lastIndexOf(String str,
                int fromIndex)
Returns the index within this string of the last occurrence of the specified substring.


length

int length()
Returns the length (character count).


offsetByCodePoints

int offsetByCodePoints(int index,
                       int codePointOffset)
Returns the index within this sequence that is offset from the given index by codePointOffset code points.


replace

EscapeStringBuilder replace(int start,
                            int end,
                            String str)
Replaces the characters in a substring of this sequence with characters in the specified String.


reverse

EscapeStringBuilder reverse()
Causes this character sequence to be replaced by the reverse of the sequence.


setCharAt

void setCharAt(int index,
               char ch)
The character at the specified index is set to ch.


setLength

void setLength(int newLength)
Sets the length of the character sequence.


subSequence

CharSequence subSequence(int start,
                         int end)
Returns a new character sequence that is a subsequence of this sequence.


substring

String substring(int start)
Returns a new String that contains a subsequence of characters currently contained in this character sequence.


substring

String substring(int start,
                 int end)
Returns a new String that contains a subsequence of characters currently contained in this sequence.


toString

String toString()
Returns a string representing the data in this sequence.

Overrides:
toString in class Object

toStringBuilder

StringBuilder toStringBuilder()
Returns a SSttringBuilder representing the data in this sequence.


trimToSize

void trimToSize()
Attempts to reduce storage used for the character sequence.



Copyright © 2013 evolveum. All Rights Reserved.