| Package | Description |
|---|---|
| java.io | |
| java.lang | |
| java.lang.annotation | |
| java.lang.invoke | |
| java.lang.reflect | |
| java.net | |
| java.nio.charset | |
| java.text | |
| java.util |
| Modifier and Type | Method and Description |
|---|---|
String |
DataInputStream.readUTF()
See the general contract of the readUTF method of DataInput.
|
String |
DataInput.readUTF()
Reads in a string that has been encoded using a modified UTF-8 format.
|
static String |
DataInputStream.readUTF(DataInput in)
Reads from the stream in a representation of a Unicode character string encoded in Java modified UTF-8 format; this string of characters is then returned as a String.
|
String |
StringWriter.toString() |
String |
ByteArrayOutputStream.toString()
Converts the buffer's contents into a string, translating bytes into characters according to the platform's default character encoding.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PrintStream.print(String s)
Print a string.
|
void |
PrintStream.println(String x)
Print a String and then terminate the line.
|
void |
Writer.write(String str)
Write a string.
|
void |
StringWriter.write(String str) |
void |
Writer.write(String str,
int off,
int len)
Write a portion of a string.
|
void |
StringWriter.write(String str,
int off,
int len) |
void |
OutputStreamWriter.write(String str,
int off,
int len)
Write a portion of a string.
|
void |
DataOutputStream.writeChars(String s)
Writes a string to the underlying output stream as a sequence of characters.
|
void |
DataOutput.writeChars(String s)
Writes every character in the string s, to the output stream, in order, two bytes per character.
|
void |
DataOutputStream.writeUTF(String str)
Writes a string to the underlying output stream using UTF-8 encoding in a machine-independent manner.
|
void |
DataOutput.writeUTF(String s)
Writes two bytes of length information to the output stream, followed by the Java modified UTF representation of every character in the string s.
|
| Constructor and Description |
|---|
EOFException(String s)
Constructs an EOFException with the specified detail message.
|
InputStreamReader(InputStream is,
String enc)
Create an InputStreamReader that uses the named character encoding.
|
InterruptedIOException(String s)
Constructs an InterruptedIOException with the specified detail message.
|
IOException(String s)
Constructs an IOException with the specified detail message.
|
IOException(String s,
Throwable cause)
Constructs an IOException with the specified detail message and cause.
|
OutputStreamWriter(OutputStream os,
String enc)
Create an OutputStreamWriter that uses the named character encoding.
|
StringReader(String str)
Construct a new
StringReader with str as source. |
UnsupportedEncodingException(String s)
Constructs an UnsupportedEncodingException with a detail message.
|
UTFDataFormatException(String s)
Constructs a UTFDataFormatException with the specified detail message.
|
| Modifier and Type | Field and Description |
|---|---|
static Comparator<String> |
String.CASE_INSENSITIVE_ORDER |
| Modifier and Type | Method and Description |
|---|---|
String |
String.concat(String str)
Concatenates the specified string to the end of this string.
|
static String |
String.copyValueOf(char[] data) |
static String |
String.copyValueOf(char[] data,
int offset,
int count) |
String |
Class.getCanonicalName()
Deprecated.
don't use this method for anything important since class names are obfuscated on the device!
|
String |
StackTraceElement.getClassName() |
String |
StackTraceElement.getFileName() |
String |
Throwable.getLocalizedMessage() |
String |
Throwable.getMessage()
Returns the error message string of this Throwable object.
|
String |
StackTraceElement.getMethodName() |
String |
Thread.getName()
Returns this thread's name.
|
String |
Class.getName()
Deprecated.
don't use this method for anything important since class names are obfuscated on the device!
|
static String |
System.getProperty(String key)
Gets the system property indicated by the specified key.
|
String |
Class.getSimpleName()
Deprecated.
don't use this method for anything important since class names are obfuscated on the device!
|
String |
String.intern()
Returns a canonical representation for the string object.
|
String |
Enum.name() |
String |
String.replace(char oldChar,
char newChar)
Returns a new string resulting from replacing all occurrences of oldChar in this string with newChar.
|
String |
String.substring(int beginIndex)
Returns a new string that is a substring of this string.
|
String |
String.substring(int beginIndex,
int endIndex)
Returns a new string that is a substring of this string.
|
static String |
Integer.toBinaryString(int i)
Creates a string representation of the integer argument as an unsigned integer in base
2.
|
static String |
Integer.toHexString(int i)
Creates a string representation of the integer argument as an unsigned integer in base
16.
|
String |
String.toLowerCase()
Converts all of the characters in this String to lower case.
|
static String |
Integer.toOctalString(int i)
Creates a string representation of the integer argument as an unsigned integer in base 8.
|
String |
Throwable.toString()
Returns a short description of this Throwable object.
|
String |
Thread.toString()
Returns a string representation of this thread, including the thread's name and priority.
|
String |
StringBuilder.toString()
Converts to a string representing the data in this string builder.
|
String |
StringBuffer.toString()
Converts to a string representing the data in this string buffer.
|
String |
String.toString()
This object (which is already a string!) is itself returned.
|
String |
Short.toString()
Returns a String object representing this Short's value.
|
String |
Object.toString()
Returns a string representation of the object.
|
String |
Long.toString()
Returns a String object representing this Long's value.
|
String |
Integer.toString()
Returns a String object representing this Integer's value.
|
String |
Float.toString()
Returns a String representation of this Float object.
|
String |
Enum.toString() |
String |
Double.toString()
Returns a String representation of this Double object.
|
String |
Class.toString()
Converts the object to a string.
|
String |
Character.toString()
Returns a String object representing this character's value.
|
String |
CharSequence.toString()
Returns a string with the same characters in the same order as in this
sequence.
|
String |
Byte.toString()
Returns a String object representing this Byte's value.
|
String |
Boolean.toString()
Returns a String object representing this Boolean's value.
|
static String |
Double.toString(double d)
Creates a string representation of the double argument.
|
static String |
Float.toString(float f)
Returns a String representation for the specified float value.
|
static String |
Integer.toString(int i)
Returns a new String object representing the specified integer.
|
static String |
Integer.toString(int i,
int radix)
Creates a string representation of the first argument in the radix specified by the second argument.
|
static String |
Long.toString(long i)
Returns a new String object representing the specified integer.
|
static String |
Long.toString(long i,
int radix)
Creates a string representation of the first argument in the radix specified by the second argument.
|
String |
String.toUpperCase()
Converts all of the characters in this String to upper case.
|
String |
String.toUpperCase(Locale locale) |
String |
String.trim()
Removes white space from both ends of this string.
|
static String |
String.valueOf(boolean b)
Returns the string representation of the boolean argument.
|
static String |
String.valueOf(char c)
Returns the string representation of the char argument.
|
static String |
String.valueOf(char[] data,
int offset,
int count)
Returns the string representation of a specific subarray of the char array argument.
|
static String |
String.valueOf(double d)
Returns the string representation of the double argument.
|
static String |
String.valueOf(float f)
Returns the string representation of the float argument.
|
static String |
String.valueOf(int i)
Returns the string representation of the int argument.
|
static String |
String.valueOf(long l)
Returns the string representation of the long argument.
|
static String |
String.valueOf(Object obj)
Returns the string representation of the Object argument.
|
| Modifier and Type | Method and Description |
|---|---|
StringBuilder |
StringBuilder.append(String str)
Appends the string to this string builder.
|
StringBuffer |
StringBuffer.append(String str)
Appends the string to this string buffer.
|
int |
String.compareTo(String anotherString)
Compares two strings lexicographically.
|
int |
String.compareToIgnoreCase(String anotherString) |
String |
String.concat(String str)
Concatenates the specified string to the end of this string.
|
boolean |
String.endsWith(String suffix)
Tests if this string ends with the specified suffix.
|
boolean |
String.equalsIgnoreCase(String anotherString)
Compares this String to another String, ignoring case considerations.
|
static Class |
Class.forName(String className)
Deprecated.
don't use this method for anything important since class names are obfuscated on the device!
|
byte[] |
String.getBytes(String enc)
Convert this String into bytes according to the specified character encoding, storing the result into a new byte array.
|
static String |
System.getProperty(String key)
Gets the system property indicated by the specified key.
|
InputStream |
ClassLoader.getResourceAsStream(String name) |
static InputStream |
ClassLoader.getSystemResourceAsStream(String name) |
int |
String.indexOf(String str)
Returns the index within this string of the first occurrence of the specified substring.
|
int |
String.indexOf(String str,
int fromIndex)
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
|
StringBuilder |
StringBuilder.insert(int offset,
String str)
Inserts the string into this string builder.
|
StringBuffer |
StringBuffer.insert(int offset,
String str)
Inserts the string into this string buffer.
|
int |
String.lastIndexOf(String string)
Searches in this string for the last index of the specified string.
|
int |
String.lastIndexOf(String subString,
int start)
Searches in this string for the index of the specified string.
|
static boolean |
Boolean.parseBoolean(String s) |
static byte |
Byte.parseByte(String s)
Assuming the specified String represents a byte, returns that byte's value.
|
static byte |
Byte.parseByte(String s,
int radix)
Assuming the specified String represents a byte, returns that byte's value.
|
static double |
Double.parseDouble(String s)
Returns a new double initialized to the value represented by the specified String, as performed by the valueOf method of class Double.
|
static float |
Float.parseFloat(String s)
Returns a new float initialized to the value represented by the specified String.
|
static int |
Integer.parseInt(String s)
Parses the string argument as a signed decimal integer.
|
static int |
Integer.parseInt(String s,
int radix)
Parses the string argument as a signed integer in the radix specified by the second argument.
|
static long |
Long.parseLong(String s)
Parses the string argument as a signed decimal long.
|
static long |
Long.parseLong(String s,
int radix)
Parses the string argument as a signed long in the radix specified by the second argument.
|
static short |
Short.parseShort(String s)
Assuming the specified String represents a short, returns that short's value.
|
static short |
Short.parseShort(String s,
int radix)
Assuming the specified String represents a short, returns that short's value in the radix specified by the second argument.
|
boolean |
String.regionMatches(boolean ignoreCase,
int toffset,
String other,
int ooffset,
int len)
Tests if two string regions are equal.
|
boolean |
String.regionMatches(int thisStart,
String string,
int start,
int length)
Compares the specified string to this string and compares the specified
range of characters to determine if they are the same.
|
boolean |
String.startsWith(String prefix)
Tests if this string starts with the specified prefix.
|
boolean |
String.startsWith(String prefix,
int toffset)
Tests if this string starts with the specified prefix beginning at the specified index.
|
static <T extends Enum<T>> |
Enum.valueOf(Class<T> enumType,
String name) |
static Integer |
Integer.valueOf(String s)
Returns a new Integer object initialized to the value of the specified String.
|
static Float |
Float.valueOf(String s)
Returns the floating point value represented by the specified String.
|
static Double |
Double.valueOf(String s)
Returns a new Double object initialized to the value represented by the specified string.
|
static Boolean |
Boolean.valueOf(String b) |
static Integer |
Integer.valueOf(String s,
int radix)
Returns a new Integer object initialized to the value of the specified String.
|
| Constructor and Description |
|---|
ArithmeticException(String s)
Constructs an ArithmeticException with the specified detail message.
|
ArrayIndexOutOfBoundsException(String s)
Constructs an ArrayIndexOutOfBoundsException class with the specified detail message.
|
ArrayStoreException(String s)
Constructs an ArrayStoreException with the specified detail message.
|
AssertionError(String detailMessage) |
AssertionError(String message,
Throwable cause) |
ClassCastException(String s)
Constructs a ClassCastException with the specified detail message.
|
ClassNotFoundException(String s)
Constructs a ClassNotFoundException with the specified detail message.
|
CloneNotSupportedException(String detailMessage)
Constructs a new
CloneNotSupportedException with the current
stack trace and the specified detail message. |
Enum(String name,
int ordinal) |
Error(String s)
Constructs an Error with the specified detail message.
|
Exception(String s)
Constructs an Exception with the specified detail message.
|
Exception(String s,
Throwable cause)
Constructs a new exception with message and cause.
|
IllegalAccessException(String s)
Constructs an IllegalAccessException with a detail message.
|
IllegalArgumentException(String s)
Constructs an IllegalArgumentException with the specified detail message.
|
IllegalMonitorStateException(String s)
Constructs an IllegalMonitorStateException with the specified detail message.
|
IllegalStateException(String s) |
IllegalThreadStateException(String s)
Constructs an IllegalThreadStateException with the specified detail message.
|
IncompatibleClassChangeError(String detailMessage)
Constructs a new
IncompatibleClassChangeError with the current
stack trace and the specified detail message. |
IndexOutOfBoundsException(String s)
Constructs an IndexOutOfBoundsException with the specified detail message.
|
InstantiationException(String s)
Constructs an InstantiationException with the specified detail message.
|
InterruptedException(String s)
Constructs an InterruptedException with the specified detail message.
|
LinkageError(String detailMessage)
Constructs a new
LinkageError with the current stack trace and
the specified detail message. |
NegativeArraySizeException(String s)
Constructs a NegativeArraySizeException with the specified detail message.
|
NoClassDefFoundError(String s)
Constructs a NoClassDefFoundError with the specified detail message.
|
NoSuchFieldError(String detailMessage)
Constructs a new
NoSuchFieldError with the current stack trace
and the specified detail message. |
NullPointerException(String s)
Constructs a NullPointerException with the specified detail message.
|
NumberFormatException(String s)
Constructs a NumberFormatException with the specified detail message.
|
OutOfMemoryError(String s)
Constructs an OutOfMemoryError with the specified detail message.
|
RuntimeException(String s)
Constructs a RuntimeException with the specified detail message.
|
RuntimeException(String s,
Throwable cause)
Constructs a RuntimeException with the specified detail message and cause.
|
SecurityException(String s)
Constructs a SecurityException with the specified detail message.
|
StackTraceElement(String declaringClass,
String methodName,
String fileName,
int lineNumber) |
String(byte[] bytes,
int off,
int len,
String enc)
Construct a new String by converting the specified subarray of bytes using the specified character encoding.
|
String(byte[] bytes,
String enc)
Construct a new String by converting the specified array of bytes using the specified character encoding.
|
String(String value)
Initializes a newly created String object so that it represents the same sequence of characters as the argument; in other words, the newly created string is a copy of the argument string.
|
StringBuffer(String str)
Constructs a string buffer so that it represents the same sequence of characters as the string argument; in other words, the initial contents of the string buffer is a copy of the argument string.
|
StringBuilder(String str)
Constructs a string builder so that it represents the same sequence of characters as the string argument; in other words, the initial contents of the string builder is a copy of the argument string.
|
StringIndexOutOfBoundsException(String s)
Constructs a StringIndexOutOfBoundsException with the specified detail message.
|
Thread(Runnable target,
String name)
Allocates a new Thread object with the given target and name.
|
Thread(String name)
Allocates a new Thread object with the given name.
|
Throwable(String message)
Constructs a new Throwable with the specified error message.
|
Throwable(String message,
Throwable cause)
Constructs a new throwable with the specified detail message and cause.
|
UnsupportedOperationException(String m) |
VirtualMachineError(String s)
Constructs a VirtualMachineError with the specified detail message.
|
| Modifier and Type | Method and Description |
|---|---|
String |
IncompleteAnnotationException.elementName() |
String |
Annotation.toString()
Returns a string representation of this annotation.
|
| Modifier and Type | Method and Description |
|---|---|
static RetentionPolicy |
RetentionPolicy.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementType |
ElementType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
| Constructor and Description |
|---|
AnnotationFormatError(String message) |
AnnotationFormatError(String message,
Throwable cause) |
IncompleteAnnotationException(Class<? extends Annotation> annotationType,
String elementName) |
| Modifier and Type | Method and Description |
|---|---|
static CallSite |
LambdaMetafactory.altMetafactory(MethodHandles.Lookup a,
String b,
MethodType c,
Object... d)
Deprecated.
|
MethodHandle |
MethodHandles.Lookup.bind(Object a,
String b,
MethodType c) |
MethodHandle |
MethodHandles.Lookup.findGetter(Class<?> a,
String b,
Class<?> c) |
MethodHandle |
MethodHandles.Lookup.findSetter(Class<?> a,
String b,
Class<?> c) |
MethodHandle |
MethodHandles.Lookup.findSpecial(Class<?> a,
String b,
MethodType c,
Class<?> d) |
MethodHandle |
MethodHandles.Lookup.findStatic(Class<?> a,
String b,
MethodType c) |
MethodHandle |
MethodHandles.Lookup.findStaticGetter(Class<?> a,
String b,
Class<?> c) |
MethodHandle |
MethodHandles.Lookup.findStaticSetter(Class<?> a,
String b,
Class<?> c) |
MethodHandle |
MethodHandles.Lookup.findVirtual(Class<?> a,
String b,
MethodType c) |
static CallSite |
LambdaMetafactory.metafactory(MethodHandles.Lookup a,
String f,
MethodType b,
MethodType c,
MethodHandle d,
MethodType e)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
String |
Method.getName() |
String |
Constructor.getName() |
| Modifier and Type | Method and Description |
|---|---|
String |
URI.getAuthority() |
String |
URI.getFragment()
Get the decoded fragment (otherwise known as the "reference" or
"anchor") part of the uri.
|
String |
URI.getHost()
Get the host name part of the URI.
|
String |
URISyntaxException.getInput() |
String |
URI.getPath()
Get the decoded path part of the uri.
|
String |
URI.getQuery()
Get the decoded query part of the uri.
|
String |
URI.getRawAuthority() |
String |
URI.getRawFragment()
Get the encoded fragment (otherwise known as the "reference" or
"anchor") part of the uri.
|
String |
URI.getRawPath()
Get the encoded path part of the uri.
|
String |
URI.getRawQuery()
Get the encoded query part of the uri.
|
String |
URI.getRawSchemeSpecificPart() |
String |
URI.getRawUserInfo() |
String |
URISyntaxException.getReason() |
String |
URI.getScheme()
Get the scheme part of the URI.
|
String |
URI.getSchemeSpecificPart() |
String |
URI.getUserInfo() |
protected String |
URI.rebuildSchemeSpecificPart()
Utility method to construct the scheme specific part from the uri
segments (less scheme and fragment)
|
String |
URI.toASCIIString() |
String |
URI.toString() |
| Modifier and Type | Method and Description |
|---|---|
static URI |
URI.create(String uriString)
A convenience factory method, intended to be used when the URI string is
known to be valid (ie.
|
protected void |
URI.parseSchemeSpecificPart(String ssp,
boolean encode)
Utility method used to parse a given scheme specific part.
|
protected void |
URI.parseURI(String uriString)
Rather than attempting to process the uri string in a linear fashion,
this implementation works its way from outside-in
|
protected void |
URI.setAuthority(String newAuthority,
boolean encode)
Utility method - set the part, ensuring valid format.
|
protected void |
URI.setAuthority(String host,
int port,
String userInfo,
boolean encode)
Utility method to construct the authority segment from given host, port,
and userinfo segments.
|
protected void |
URI.setFragment(String fragment,
boolean encode)
Utility method to set the fragment.
|
void |
URISyntaxException.setInput(String input) |
protected void |
URI.setPath(String path,
boolean encode)
Utility method to set the path.
|
protected void |
URI.setQuery(String query,
boolean encode)
Utility method to set the query.
|
void |
URISyntaxException.setReason(String reason) |
protected void |
URI.setScheme(String scheme)
Utility method - set the scheme, ensuring valid format, and determining
the query separator to use.
|
protected void |
URI.setSchemeSpecificPart(String ssp,
boolean encode)
Utility method - set the scheme specific part, ensuring valid format.
|
| Constructor and Description |
|---|
URI(String uriString)
Constructor that parses its values from a URI string.
|
URI(String scheme,
String ssp,
String fragment)
Constructor for building URNs.
|
URI(String scheme,
String userInfo,
String host,
int port,
String path,
String query,
String fragment)
Constructor to create a new URI object.
|
URI(String scheme,
String authority,
String path,
String query,
String fragment)
Constructor to create a new URI object.
|
URISyntaxException(String input,
String reason) |
URISyntaxException(String input,
String reason,
int index) |
| Modifier and Type | Method and Description |
|---|---|
String |
Charset.displayName() |
| Modifier and Type | Method and Description |
|---|---|
static Charset |
Charset.forName(String name) |
| Constructor and Description |
|---|
Charset(String canonicalName,
String[] aliases) |
Charset(String canonicalName,
String[] aliases) |
| Modifier and Type | Field and Description |
|---|---|
static String |
DateFormatPatterns.ISO8601
Pattern for parsing/formatting ISO8601 timestamp.
|
static String |
DateFormatPatterns.RFC2822
Pattern for parsing/formatting RFC-2822 timestamp.
|
static String |
DateFormatPatterns.RFC822
Pattern for parsing/formatting RFC-822 timestamp.
|
static String |
DateFormatPatterns.TWITTER_SEARCH
Pattern for parsing/formatting Twitter search timestamp.
|
static String |
DateFormatPatterns.TWITTER_TIMELINE
Pattern for parsing/formatting Twitter timeline timestamp.
|
static String |
DateFormatPatterns.VERBOSE_DATE
Pattern for a verbose date
|
static String |
DateFormatPatterns.VERBOSE_TIME
Pattern for a verbose time
|
static String |
DateFormatPatterns.VERBOSE_TIMESTAMP
Pattern for a verbose timestamp
|
| Modifier and Type | Method and Description |
|---|---|
String |
SimpleDateFormat.format(Date source)
Deprecated.
|
String |
DateFormat.format(Date source)
Deprecated.
Format a given date.
|
abstract String |
Format.format(Object source)
Format an object.
|
String |
DateFormat.format(Object obj)
Deprecated.
Format a given object.
|
String[] |
DateFormatSymbols.getAmPmStrings() |
String[] |
DateFormatSymbols.getEras() |
String[] |
DateFormatSymbols.getMonths() |
String[] |
DateFormatSymbols.getShortMonths() |
String[] |
DateFormatSymbols.getShortWeekdays() |
String[] |
DateFormatSymbols.getWeekdays() |
String[][] |
DateFormatSymbols.getZoneStrings() |
String |
SimpleDateFormat.toPattern()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
Hashtable<String,String> |
DateFormatSymbols.getResourceBundle() |
Hashtable<String,String> |
DateFormatSymbols.getResourceBundle() |
| Modifier and Type | Method and Description |
|---|---|
void |
SimpleDateFormat.applyPattern(String pattern)
Deprecated.
Apply a new pattern.
|
Date |
SimpleDateFormat.parse(String source)
Deprecated.
|
Date |
DateFormat.parse(String source)
Deprecated.
NOT IMPLEMENTED - use SimpleDateFormat for parsing instead.
|
abstract Object |
Format.parseObject(String source)
Parse an string to an object.
|
Object |
DateFormat.parseObject(String source)
Deprecated.
NOT IMPLEMENTED - use SimpleDateFormat for parsing instead.
|
void |
DateFormatSymbols.setAmPmStrings(String[] newAmpms) |
void |
DateFormatSymbols.setEras(String[] newEras) |
void |
DateFormatSymbols.setMonths(String[] newMonths) |
void |
DateFormatSymbols.setShortMonths(String[] newShortMonths) |
void |
DateFormatSymbols.setShortWeekdays(String[] newShortWeekdays) |
void |
DateFormatSymbols.setWeekdays(String[] newWeekdays) |
void |
DateFormatSymbols.setZoneStrings(String[][] newZoneStrings) |
| Modifier and Type | Method and Description |
|---|---|
void |
DateFormatSymbols.setResourceBundle(Hashtable<String,String> newResourceBundle) |
void |
DateFormatSymbols.setResourceBundle(Hashtable<String,String> newResourceBundle) |
| Constructor and Description |
|---|
ParseException(String s,
int errorOffset) |
SimpleDateFormat(String pattern)
Deprecated.
Construct a SimpleDateFormat with a given pattern.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
Arrays.deepToString(Object[] array)
Creates a "deep"
String representation of the
Object[] passed, such that if the array contains other arrays,
the String representation of those arrays is generated as well. |
static String[] |
TimeZone.getAvailableIDs()
Gets all the available IDs supported.
|
String |
Locale.getCountry() |
String |
TimeZone.getID()
Gets the ID of this time zone.
|
String |
Locale.getLanguage() |
String |
StringTokenizer.nextToken()
Returns the next token in the string as a
String. |
String |
StringTokenizer.nextToken(String delims)
Returns the next token in the string as a
String. |
String |
Vector.toString()
Returns the string representation of this vector.
|
String |
Hashtable.toString()
Returns the string representation of this
Hashtable. |
String |
Date.toString()
Converts this Date object to a String of the form: dow mon dd hh:mm:ss zzz yyyy where: dow is the day of the week (Sun, Mon, Tue, Wed, Thu, Fri, Sat).
|
String |
BitSet.toString()
Returns a string containing a concise, human-readable description of the
receiver.
|
String |
AbstractMap.toString()
Returns the string representation of this map.
|
String |
AbstractMap.SimpleImmutableEntry.toString()
Answers a String representation of this entry.
|
String |
AbstractMap.SimpleEntry.toString()
Answers a String representation of this entry.
|
String |
AbstractCollection.toString()
Returns the string representation of this
Collection. |
static String |
Arrays.toString(boolean[] array)
Creates a
String representation of the boolean[] passed. |
static String |
Arrays.toString(byte[] array)
Creates a
String representation of the byte[] passed. |
static String |
Arrays.toString(char[] array)
Creates a
String representation of the char[] passed. |
static String |
Arrays.toString(double[] array)
Creates a
String representation of the double[] passed. |
static String |
Arrays.toString(float[] array)
Creates a
String representation of the float[] passed. |
static String |
Arrays.toString(int[] array)
Creates a
String representation of the int[] passed. |
static String |
Arrays.toString(long[] array)
Creates a
String representation of the long[] passed. |
static String |
Objects.toString(Object o) |
static String |
Arrays.toString(Object[] array)
Creates a
String representation of the Object[] passed. |
static String |
Objects.toString(Object o,
String nullDefault) |
static String |
Arrays.toString(short[] array)
Creates a
String representation of the short[] passed. |
| Modifier and Type | Method and Description |
|---|---|
static TimeZone |
TimeZone.getTimeZone(String ID)
Gets the TimeZone for the given ID.
|
String |
StringTokenizer.nextToken(String delims)
Returns the next token in the string as a
String. |
static <T> T |
Objects.requireNonNull(T obj,
String message) |
static String |
Objects.toString(Object o,
String nullDefault) |
| Constructor and Description |
|---|
ConcurrentModificationException(String detailMessage)
Constructs a new
ConcurrentModificationException with the current
stack trace and message filled in. |
Locale(String language,
String locale) |
NoSuchElementException(String s)
Constructs a NoSuchElementException, saving a reference to the error message string s for later retrieval by the getMessage method.
|
StringTokenizer(String string)
Constructs a new
StringTokenizer for the parameter string using
whitespace as the delimiter. |
StringTokenizer(String string,
String delimiters)
Constructs a new
StringTokenizer for the parameter string using
the specified delimiters. |
StringTokenizer(String string,
String delimiters,
boolean returnDelimiters)
Constructs a new
StringTokenizer for the parameter string using
the specified delimiters, returning the delimiters as tokens if the
parameter returnDelimiters is true. |
Copyright © 2022. All rights reserved.