| 
 | " 2013 FRC Java API" | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use StringBuffer | |
|---|---|
| com.sun.squawk.debugger | |
| edu.wpi.first.wpilibj | The WPI Robotics library (WPILibJ) is a set of Java classes that interfaces to the hardware in the FRC control system and your robot. | 
| java.lang | MID Profile Language Classes included from Java 2 Standard Edition. | 
| Uses of StringBuffer in com.sun.squawk.debugger | 
|---|
| Methods in com.sun.squawk.debugger with parameters of type StringBuffer | |
|---|---|
| protected  void | Packet.appendData(StringBuffer buf)Appends a textualized form of this packet's data to a given StringBuffer. | 
| Uses of StringBuffer in edu.wpi.first.wpilibj | 
|---|
| Methods in edu.wpi.first.wpilibj with parameters of type StringBuffer | |
|---|---|
|  void | DriverStationLCD.println(DriverStationLCD.Line line,
        int startingColumn,
        StringBuffer text)Print formatted text to the Driver Station LCD text buffer. | 
| Uses of StringBuffer in java.lang | 
|---|
| Methods in java.lang that return StringBuffer | |
|---|---|
|  StringBuffer | StringBuffer.append(boolean b)Appends the string representation of the booleanargument to the string buffer. | 
|  StringBuffer | StringBuffer.append(char c)Appends the string representation of the charargument to this string buffer. | 
|  StringBuffer | StringBuffer.append(char[] str)Appends the string representation of the chararray
 argument to this string buffer. | 
|  StringBuffer | StringBuffer.append(char[] str,
       int offset,
       int len)Appends the string representation of a subarray of the chararray argument to this string buffer. | 
|  StringBuffer | StringBuffer.append(double d)Appends a double to the end of this buffer. | 
|  StringBuffer | StringBuffer.append(float f)Appends a float to the end of this buffer. | 
|  StringBuffer | StringBuffer.append(int i)Appends the string representation of the intargument to this string buffer. | 
|  StringBuffer | StringBuffer.append(long l)Appends the string representation of the longargument to this string buffer. | 
|  StringBuffer | StringBuffer.append(Object obj)Appends the string representation of the Objectargument to this string buffer. | 
|  StringBuffer | StringBuffer.append(String str)Appends the string to this string buffer. | 
|  StringBuffer | StringBuffer.delete(int start,
       int end)Removes the characters in a substring of this StringBuffer. | 
|  StringBuffer | StringBuffer.deleteCharAt(int index)Removes the character at the specified position in this StringBuffer(shortening theStringBufferby one character). | 
|  StringBuffer | StringBuffer.insert(int offset,
       boolean b)Inserts the string representation of the booleanargument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       char c)Inserts the string representation of the charargument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       char[] str)Inserts the string representation of the chararray
 argument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       double d)Inserts the string representation of the doubleargument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       float f)Inserts the string representation of the floatargument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       int i)Inserts the string representation of the second intargument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       long l)Inserts the string representation of the longargument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       Object obj)Inserts the string representation of the Objectargument into this string buffer. | 
|  StringBuffer | StringBuffer.insert(int offset,
       String str)Inserts the string into this string buffer. | 
|  StringBuffer | StringBuffer.reverse()The character sequence contained in this string buffer is replaced by the reverse of the sequence. | 
| Constructors in java.lang with parameters of type StringBuffer | |
|---|---|
| String(StringBuffer buffer)Allocates a new string that contains the sequence of characters currently contained in the string buffer argument. | |
| 
 | " 2013 FRC Java API" | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||