String
char | charAt(int index)
Returns the character at the specified index.Devuelve la calidad en el índice especificado. |
int | compareTo(Object o)
Compares this String to another Object. Compara este cordel con otro objeto. |
int | compareTo(String anotherString)
Compares two strings lexicographically.Compara dos cordeles lexicográficamente. |
int | compareToIgnoreCase(String str)
Compares two strings lexicographically, ignoring case differences. Compara dos cordels lexicográficamente, haciendo caso omiso de las diferencias de caso. |
String | concat(String str)
Concatenates the specified string to the end of this string.Concadena la cadena especificada hasta el final de esta cadena. |
boolean | contentEquals(StringBuffer sb)
Returns true if and only if this String represents the same sequence of characters as the specified StringBuffer. INTROs verdaderos si y solo si este cordel representa la misma secuencia de las calidades como el StringBuffer especificado. |
static String |copyValueOf(char[] data)
Returns a String that represents the character sequence in the array specified. Devuelve un cordel que representa la secuencia de calidad en la matriz especificada. |
static String | copyValueOf(char[] data, int offset, int count)
Returns a String thatrepresents the character sequence in the array specified. Devuelve un cordel que representa la secuencia de calidad en la matriz especificada.. |
boolean | endsWith(String suffix)
Tests if this string ends with the specified suffix. Evalua si este hilo termina con elsufijo especificado. |
Boolean | Equals (Object anObject)
Compares this string to the specified object. Compara este cordel con el objeto especificado. |
boolean | equalsIgnoreCase(String anotherString)
Compares this String to another String, ignoring case considerations. |
byte[] | getBytes()
Encodes this String into asequence of bytes using the platform's default charset, storing the result into a new byte array. |
void | getBytes(int srcBegin, int srcEnd, byte[] dst, int dstBegin)
Deprecated. This method does not properly convert characters into bytes. As of JDK 1.1, the preferred way to do this is via the the getBytes() method, which uses the platform's default charset. |
byte[] |getBytes(String charsetName)
Encodes this String into a sequence of bytes using the named charset, storing the result into a new byte array. |
void | getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
Copies characters from this string into the destination character array. |
int | hashCode()
Returns a hash code for this string. |
int | indexOf(int ch) Returns the index within this string of the first occurrence of the specified character. |
int | indexOf(int ch, int fromIndex)
Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index. |
int | indexOf(String str)
Returns the index within this string of the first occurrence of thespecified 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. |
String | intern()
Returns a canonical representation for the string object. |
int | lastIndexOf(int ch)
Returns the index within this string of the last occurrence of...
Regístrate para leer el documento completo.