Uses of Class
java.lang.String
-
-
Uses of String in java.io
Methods in java.io with parameters of type String Modifier and Type Method Description int
PrintStream. print(String str)
Prints a string to the output stream.int
PrintStream. println(String str)
Prints a string to the output stream and then terminates the line.Constructors in java.io with parameters of type String Constructor Description IOException(String detailMessage)
Constructs a newIOException
with its stack trace and detail message filled in.IOException(String message, Throwable cause)
Constructs a new instance of this class with detail message and cause filled in. -
Uses of String in java.lang
Fields in java.lang declared as String Modifier and Type Field Description String
Throwable. message
This field contains a detailed message depending on the exception actually thrown.Methods in java.lang that return String Modifier and Type Method Description static String
String. allocateString(int ref, char[] value)
static String
String. allocateString(int ref, char[] value, int offset, int cnt)
String
Throwable. getMessage()
String
Class. getName()
Returns the name of the class represented by thisClass
.String
Enum. name()
Returns the name of this enum constant.static String
Integer. toBinaryString(int i)
Converts the specified integer into its binary string representation.static String
Long. toBinaryString(long l)
Converts the specified long value into its binary string representation.static String
Integer. toHexString(int i)
Converts the specified integer into its hexadecimal string representation.static String
Long. toHexString(long l)
Converts the specified long value into its hexadecimal string representation.String
Boolean. toString()
Returns a string containing a concise, human-readable description of this boolean.static String
Boolean. toString(boolean value)
Converts the specified boolean to its string representation.String
Byte. toString()
static String
Byte. toString(byte value)
Returns a string containing a concise, human-readable description of the specified byte value.String
Character. toString()
static String
Character. toString(char value)
Converts the specified character to its string representation.String
Class. toString()
String
Double. toString()
static String
Double. toString(double d)
Returns a string containing a concise, human-readable description of the specified double value.String
Enum. toString()
Returns a string containing a concise, human-readable description of this object.String
Float. toString()
static String
Float. toString(float f)
Returns a string containing a concise, human-readable description of the specified float value.String
Integer. toString()
static String
Integer. toString(int i)
Converts the specified integer into its decimal string representation.String
Long. toString()
static String
Long. toString(long l)
Converts the specified long value into its decimal string representation.String
Object. toString()
Returns a string containing a concise, human-readable description of this object.String
Short. toString()
static String
Short. toString(short value)
Returns a string containing a concise, human-readable description of the specified short value with radix 10.String
Throwable. toString()
String
value()
Methods in java.lang with parameters of type String Modifier and Type Method Description int
String. compareTo(String string)
Compares the specified string to this string using the Unicode values of the characters.static Byte
Byte. decode(String string)
Parses the specified string and returns aByte
instance if the string can be decoded into a single byte value.static Integer
Integer. decode(String string)
Parses the specified string and returns aInteger
instance if the string can be decoded into an integer value.static Long
Long. decode(String string)
Parses the specified string and returns aLong
instance if the string can be decoded into a long value.static Short
Short. decode(String string)
Parses the specified string and returns aShort
instance if the string can be decoded into a short value.static Class<?>
Class. forName(String className)
Returns aClass
object which represents the class with the given name.static boolean
Boolean. parseBoolean(String s)
Parses the specified string as aboolean
.static byte
Byte. parseByte(String string)
Parses the specified string as a signed decimal byte value.static byte
Byte. parseByte(String string, int radix)
Parses the specified string as a signed byte value using the specified radix.static double
Double. parseDouble(String s)
Returns the closest double value to the real number in the string.static float
Float. parseFloat(String string)
Parses the specified string as a float value.static int
Integer. parseInt(String string)
Parses the specified string as a signed decimal integer value.static int
Integer. parseInt(String string, int radix)
Parses the specified string as a signed integer value using the specified radix.static long
Long. parseLong(String string)
Parses the specified string as a signed decimal long value.static long
Long. parseLong(String string, int radix)
Parses the specified string as a signed long value using the specified radix.static short
Short. parseShort(String string)
Parses the specified string as a signed decimal short value.static short
Short. parseShort(String string, int radix)
Parses the specified string as a signed short value using the specified radix.static Boolean
Boolean. valueOf(String string)
Parses the specified string as a boolean value.static Byte
Byte. valueOf(String string)
Parses the specified string as a signed decimal byte value.static Byte
Byte. valueOf(String string, int radix)
Parses the specified string as a signed byte value using the specified radix.static Double
Double. valueOf(String string)
Parses the specified string as a double value.static <T extends Enum<T>>
TEnum. valueOf(T[] enumValues, String name)
Returns the constant with the specified name of the specified enum type.static Float
Float. valueOf(String string)
static Integer
Integer. valueOf(String string)
Parses the specified string as a signed decimal integer value.static Integer
Integer. valueOf(String string, int radix)
Parses the specified string as a signed integer value using the specified radix.static Long
Long. valueOf(String string)
Parses the specified string as a signed decimal long value.static Long
Long. valueOf(String string, int radix)
Parses the specified string as a signed long value using the specified radix.static Short
Short. valueOf(String string)
Parses the specified string as a signed decimal short value.static Short
Short. valueOf(String string, int radix)
Parses the specified string as a signed short value using the specified radix.Constructors in java.lang with parameters of type String Constructor Description ArithmeticException(String detailMessage)
Constructs a newArithmeticException
with the current stack trace and the specified detail message.ArrayIndexOutOfBoundsException(String detailMessage)
Constructs a newArrayIndexOutOfBoundsException
with the current stack trace and the specified detail message.ArrayStoreException(String detailMessage)
Constructs a newArrayStoreException
with the current stack trace and the specified detail message.Boolean(String string)
Constructs a newBoolean
with its boolean value specified bystring
.Byte(String string)
Constructs a newByte
from the specified string.ClassCastException(String detailMessage)
Constructs a newClassCastException
with the current stack trace and the specified detail message.ClassNotFoundException(String s)
Constructs aClassNotFoundException
with the specified detail message.ClassNotFoundException(String s, Throwable ex)
Constructs aClassNotFoundException
with the specified detail message and optional exception that was raised while loading the class.Double(String string)
Constructs a newDouble
from the specified string.Enum(String name, int ordinal)
Constructor for constants of enum subtypes.Error(String detailMessage)
Constructs a newError
with the current stack trace and the specified detail message.Error(String detailMessage, Throwable throwable)
Constructs a newError
with the current stack trace, the specified detail message and the specified cause.Exception(String detailMessage)
Constructs a newException
with the current stack trace and the specified detail message.Exception(String detailMessage, Throwable throwable)
Constructs a newException
with the current stack trace, the specified detail message and the specified cause.Float(String string)
Constructs a newFloat
from the specified string.IllegalArgumentException(String detailMessage)
Constructs a newIllegalArgumentException
with the current stack trace and the specified detail message.IllegalArgumentException(String message, Throwable cause)
Constructs a newIllegalArgumentException
with the current stack trace, the specified detail message and the specified cause.IncompatibleClassChangeError(String detailMessage)
Constructs a newIncompatibleClassChangeError
with the current stack trace and the specified detail message.IndexOutOfBoundsException(String detailMessage)
Constructs a newIndexOutOfBoundsException
with the current stack trace and the specified detail message.Integer(String string)
Constructs a newInteger
from the specified string.LinkageError(String detailMessage)
Constructs a newLinkageError
with the current stack trace and the specified detail message.LinkageError(String detailMessage, Throwable cause)
Constructs a newLinkageError
with the given detail message and cause.Long(String string)
Constructs a newLong
from the specified string.NegativeArraySizeException(String detailMessage)
Constructs a newNegativeArraySizeException
with the current stack trace and the specified detail message.NoSuchFieldError(String detailMessage)
Constructs a newNoSuchFieldError
with the current stack trace and the specified detail message.NoSuchFieldException(String detailMessage)
Constructs a newNoSuchFieldException
with the current stack trace and the specified detail message.NoSuchMethodError(String detailMessage)
Constructs a newNoSuchMethodError
with the current stack trace and the specified detail message.NoSuchMethodException(String detailMessage)
Constructs a newNoSuchMethodException
with the current stack trace and the specified detail message.NullPointerException(String detailMessage)
Constructs a newNullPointerException
with the current stack trace and the specified detail message.NumberFormatException(String detailMessage)
Constructs a newNumberFormatException
with the current stack trace and the specified detail message.ReflectiveOperationException(String message)
Constructs a new exception with the given detail message.ReflectiveOperationException(String message, Throwable cause)
Constructs a new exception with the given detail message and cause.RuntimeException(String detailMessage)
Constructs a newRuntimeException
with the current stack trace and the specified detail message.RuntimeException(String detailMessage, Throwable throwable)
Constructs a newRuntimeException
with the current stack trace, the specified detail message and the specified cause.Short(String string)
Constructs a newShort
from the specified string.Throwable(String message)
Throwable(String message, Throwable cause)
Throwable(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
-
Uses of String in java.lang.annotation
Methods in java.lang.annotation that return String Modifier and Type Method Description String
Annotation. toString()
Returns aString
representation of this annotation.Methods in java.lang.annotation with parameters of type String Modifier and Type Method Description static ElementType
ElementType. valueOf(String name)
Returns the enum constant of this type with the specified name.static RetentionPolicy
RetentionPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name. -
Uses of String in org.deepjava.flink.core
Methods in org.deepjava.flink.core that return String Modifier and Type Method Description static String
FlinkDevice. idToCharArray(int id)
Use this method to return a string which describes the function of a subdevice. -
Uses of String in org.deepjava.runtime.iMX6.driver
Methods in org.deepjava.runtime.iMX6.driver with parameters of type String Modifier and Type Method Description static void
UART3. write(String msg)
static void
UART3. writeln(String msg)
-
Uses of String in org.deepjava.runtime.mpc555
Methods in org.deepjava.runtime.mpc555 with parameters of type String Modifier and Type Method Description void
Logger. log(int level, String msg)
Writes a log message to thePrintStream
if the parameterlevel
is greater than the logger level.
With % it is possible to add some arguments to the message.void
Logger. log(int level, String msg, int val)
Writes a log message to thePrintStream
if the parameterlevel
is greater than the logger level.
With % it is possible to add some arguments to the message.void
Logger. log(int level, String msg, int... values)
Writes a log message to thePrintStream
if the parameterlevel
is greater than the logger level.
With % it is possible to add some arguments to the message. -
Uses of String in org.deepjava.runtime.mpc555.demo
Fields in org.deepjava.runtime.mpc555.demo declared as String Modifier and Type Field Description (package private) String
Test. str
-
Uses of String in org.deepjava.runtime.mpc555.driver
Methods in org.deepjava.runtime.mpc555.driver with parameters of type String Modifier and Type Method Description static void
BlueRS. connect(String connectTo)
Connects to a device.
To use this command, the device must be inBlueRS.MODE_AT
.static int
BlueRSCmdInt. connect(String partner)
Tries to connect to a partner modulestatic void
BlueRS. sendCommand(String cmd)
Sends a command to the Bluetooth module.
To use this command, the device must be inBlueRS.MODE_AT
.static RN131.State
RN131.State. valueOf(String name)
Returns the enum constant of this type with the specified name. -
Uses of String in org.deepjava.runtime.mpc555.driver.ffs
Fields in org.deepjava.runtime.mpc555.driver.ffs declared as String Modifier and Type Field Description String
File. name
Methods in org.deepjava.runtime.mpc555.driver.ffs with parameters of type String Modifier and Type Method Description static File
FFS. old(String filename)
Returns file with filename, null if file does not exist.Constructors in org.deepjava.runtime.mpc555.driver.ffs with parameters of type String Constructor Description File(String name)
Creates new file, if file with this name already exists, existing file is deleted first returns null if maximum number of files is exceeded -
Uses of String in org.deepjava.runtime.util
Methods in org.deepjava.runtime.util with parameters of type String Modifier and Type Method Description static IntPacket.Type
IntPacket.Type. valueOf(String name)
Returns the enum constant of this type with the specified name. -
Uses of String in org.deepjava.runtime.zynq7000.driver
Methods in org.deepjava.runtime.zynq7000.driver with parameters of type String Modifier and Type Method Description static RN131.State
RN131.State. valueOf(String name)
Returns the enum constant of this type with the specified name.static State
State. valueOf(String name)
Returns the enum constant of this type with the specified name. -
Uses of String in org.deepjava.unsafe
Methods in org.deepjava.unsafe with parameters of type String Modifier and Type Method Description static int
US. ADR_OF_METHOD(String name)
Get absolute address of class methodstatic void
US. ASM(String instr)
Insert single machine code instruction
-