|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.String
public final class String
An immutable string of characters.
Constructor Summary | |
---|---|
String(char[] c)
|
|
String(char[] c,
int off,
int len)
Create a String from a character array. |
Method Summary | |
---|---|
char |
charAt(int index)
Return the character at the given index |
boolean |
equals(Object other)
Compares the String with an Object |
int |
hashCode()
|
int |
indexOf(int ch)
Find the index of a 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)
Finds the location of a string within this string |
int |
indexOf(String str,
int fromIndex)
|
int |
lastIndexOf(String str)
|
int |
lastIndexOf(String str,
int fromIndex)
|
int |
length()
Return the length of the String in characters |
String |
substring(int start)
|
String |
substring(int start,
int end)
|
char[] |
toCharArray()
Converts the String into an array of characters |
String |
toString()
Returns itself. |
static String |
valueOf(Object aObj)
Converts an Object to a String |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait |
Constructor Detail |
---|
public String(char[] c, int off, int len)
c
- the character arrayoff
- the offset - usually 0len
- the length of the String - must not be greater than c.lengthpublic String(char[] c)
Method Detail |
---|
public int length()
public char charAt(int index)
public int indexOf(int ch)
ch
- The character to find.
public int indexOf(int ch, int fromIndex)
ch
- a character (Unicode code point).fromIndex
- the index to start the search from.
fromIndex
, or -1
if the character does not occur.public int indexOf(String str)
str
-
public int indexOf(String str, int fromIndex)
str
- fromIndex
-
public int lastIndexOf(String str)
public int lastIndexOf(String str, int fromIndex)
public char[] toCharArray()
public String substring(int start)
public String substring(int start, int end)
public static String valueOf(Object aObj)
public String toString()
toString
in class Object
public boolean equals(Object other)
equals
in class Object
public int hashCode()
hashCode
in class Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |