Uses of Class
java.lang.String
- 
- 
Uses of String in java.ioMethods in java.io with parameters of type String Modifier and Type Method Description intPrintStream. print(String str)Prints a string to the output stream.intPrintStream. 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 newIOExceptionwith 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.langFields in java.lang declared as String Modifier and Type Field Description StringThrowable. messageThis field contains a detailed message depending on the exception actually thrown.Methods in java.lang that return String Modifier and Type Method Description static StringString. allocateString(int ref, char[] value)static StringString. allocateString(int ref, char[] value, int offset, int cnt)StringThrowable. getMessage()StringClass. getName()Returns the name of the class represented by thisClass.StringEnum. name()Returns the name of this enum constant.static StringInteger. toBinaryString(int i)Converts the specified integer into its binary string representation.static StringLong. toBinaryString(long l)Converts the specified long value into its binary string representation.static StringInteger. toHexString(int i)Converts the specified integer into its hexadecimal string representation.static StringLong. toHexString(long l)Converts the specified long value into its hexadecimal string representation.StringBoolean. toString()Returns a string containing a concise, human-readable description of this boolean.static StringBoolean. toString(boolean value)Converts the specified boolean to its string representation.StringByte. toString()static StringByte. toString(byte value)Returns a string containing a concise, human-readable description of the specified byte value.StringCharacter. toString()static StringCharacter. toString(char value)Converts the specified character to its string representation.StringClass. toString()StringDouble. toString()static StringDouble. toString(double d)Returns a string containing a concise, human-readable description of the specified double value.StringEnum. toString()Returns a string containing a concise, human-readable description of this object.StringFloat. toString()static StringFloat. toString(float f)Returns a string containing a concise, human-readable description of the specified float value.StringInteger. toString()static StringInteger. toString(int i)Converts the specified integer into its decimal string representation.StringLong. toString()static StringLong. toString(long l)Converts the specified long value into its decimal string representation.StringObject. toString()Returns a string containing a concise, human-readable description of this object.StringShort. toString()static StringShort. toString(short value)Returns a string containing a concise, human-readable description of the specified short value with radix 10.StringThrowable. toString()Stringvalue()Methods in java.lang with parameters of type String Modifier and Type Method Description intString. compareTo(String string)Compares the specified string to this string using the Unicode values of the characters.static ByteByte. decode(String string)Parses the specified string and returns aByteinstance if the string can be decoded into a single byte value.static IntegerInteger. decode(String string)Parses the specified string and returns aIntegerinstance if the string can be decoded into an integer value.static LongLong. decode(String string)Parses the specified string and returns aLonginstance if the string can be decoded into a long value.static ShortShort. decode(String string)Parses the specified string and returns aShortinstance if the string can be decoded into a short value.static Class<?>Class. forName(String className)Returns aClassobject which represents the class with the given name.static booleanBoolean. parseBoolean(String s)Parses the specified string as aboolean.static byteByte. parseByte(String string)Parses the specified string as a signed decimal byte value.static byteByte. parseByte(String string, int radix)Parses the specified string as a signed byte value using the specified radix.static doubleDouble. parseDouble(String s)Returns the closest double value to the real number in the string.static floatFloat. parseFloat(String string)Parses the specified string as a float value.static intInteger. parseInt(String string)Parses the specified string as a signed decimal integer value.static intInteger. parseInt(String string, int radix)Parses the specified string as a signed integer value using the specified radix.static longLong. parseLong(String string)Parses the specified string as a signed decimal long value.static longLong. parseLong(String string, int radix)Parses the specified string as a signed long value using the specified radix.static shortShort. parseShort(String string)Parses the specified string as a signed decimal short value.static shortShort. parseShort(String string, int radix)Parses the specified string as a signed short value using the specified radix.static BooleanBoolean. valueOf(String string)Parses the specified string as a boolean value.static ByteByte. valueOf(String string)Parses the specified string as a signed decimal byte value.static ByteByte. valueOf(String string, int radix)Parses the specified string as a signed byte value using the specified radix.static DoubleDouble. 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 FloatFloat. valueOf(String string)static IntegerInteger. valueOf(String string)Parses the specified string as a signed decimal integer value.static IntegerInteger. valueOf(String string, int radix)Parses the specified string as a signed integer value using the specified radix.static LongLong. valueOf(String string)Parses the specified string as a signed decimal long value.static LongLong. valueOf(String string, int radix)Parses the specified string as a signed long value using the specified radix.static ShortShort. valueOf(String string)Parses the specified string as a signed decimal short value.static ShortShort. 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 newArithmeticExceptionwith the current stack trace and the specified detail message.ArrayIndexOutOfBoundsException(String detailMessage)Constructs a newArrayIndexOutOfBoundsExceptionwith the current stack trace and the specified detail message.ArrayStoreException(String detailMessage)Constructs a newArrayStoreExceptionwith the current stack trace and the specified detail message.Boolean(String string)Constructs a newBooleanwith its boolean value specified bystring.Byte(String string)Constructs a newBytefrom the specified string.ClassCastException(String detailMessage)Constructs a newClassCastExceptionwith the current stack trace and the specified detail message.ClassNotFoundException(String s)Constructs aClassNotFoundExceptionwith the specified detail message.ClassNotFoundException(String s, Throwable ex)Constructs aClassNotFoundExceptionwith the specified detail message and optional exception that was raised while loading the class.Double(String string)Constructs a newDoublefrom the specified string.Enum(String name, int ordinal)Constructor for constants of enum subtypes.Error(String detailMessage)Constructs a newErrorwith the current stack trace and the specified detail message.Error(String detailMessage, Throwable throwable)Constructs a newErrorwith the current stack trace, the specified detail message and the specified cause.Exception(String detailMessage)Constructs a newExceptionwith the current stack trace and the specified detail message.Exception(String detailMessage, Throwable throwable)Constructs a newExceptionwith the current stack trace, the specified detail message and the specified cause.Float(String string)Constructs a newFloatfrom the specified string.IllegalArgumentException(String detailMessage)Constructs a newIllegalArgumentExceptionwith the current stack trace and the specified detail message.IllegalArgumentException(String message, Throwable cause)Constructs a newIllegalArgumentExceptionwith the current stack trace, the specified detail message and the specified cause.IncompatibleClassChangeError(String detailMessage)Constructs a newIncompatibleClassChangeErrorwith the current stack trace and the specified detail message.IndexOutOfBoundsException(String detailMessage)Constructs a newIndexOutOfBoundsExceptionwith the current stack trace and the specified detail message.Integer(String string)Constructs a newIntegerfrom the specified string.LinkageError(String detailMessage)Constructs a newLinkageErrorwith the current stack trace and the specified detail message.LinkageError(String detailMessage, Throwable cause)Constructs a newLinkageErrorwith the given detail message and cause.Long(String string)Constructs a newLongfrom the specified string.NegativeArraySizeException(String detailMessage)Constructs a newNegativeArraySizeExceptionwith the current stack trace and the specified detail message.NoSuchFieldError(String detailMessage)Constructs a newNoSuchFieldErrorwith the current stack trace and the specified detail message.NoSuchFieldException(String detailMessage)Constructs a newNoSuchFieldExceptionwith the current stack trace and the specified detail message.NoSuchMethodError(String detailMessage)Constructs a newNoSuchMethodErrorwith the current stack trace and the specified detail message.NoSuchMethodException(String detailMessage)Constructs a newNoSuchMethodExceptionwith the current stack trace and the specified detail message.NullPointerException(String detailMessage)Constructs a newNullPointerExceptionwith the current stack trace and the specified detail message.NumberFormatException(String detailMessage)Constructs a newNumberFormatExceptionwith 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 newRuntimeExceptionwith the current stack trace and the specified detail message.RuntimeException(String detailMessage, Throwable throwable)Constructs a newRuntimeExceptionwith the current stack trace, the specified detail message and the specified cause.Short(String string)Constructs a newShortfrom 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.annotationMethods in java.lang.annotation that return String Modifier and Type Method Description StringAnnotation. toString()Returns aStringrepresentation of this annotation.Methods in java.lang.annotation with parameters of type String Modifier and Type Method Description static ElementTypeElementType. valueOf(String name)Returns the enum constant of this type with the specified name.static RetentionPolicyRetentionPolicy. valueOf(String name)Returns the enum constant of this type with the specified name.
- 
Uses of String in org.deepjava.flink.coreMethods in org.deepjava.flink.core that return String Modifier and Type Method Description static StringFlinkDevice. 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.driverMethods in org.deepjava.runtime.iMX6.driver with parameters of type String Modifier and Type Method Description static voidUART3. write(String msg)static voidUART3. writeln(String msg)
- 
Uses of String in org.deepjava.runtime.mpc555Methods in org.deepjava.runtime.mpc555 with parameters of type String Modifier and Type Method Description voidLogger. log(int level, String msg)Writes a log message to thePrintStreamif the parameterlevelis greater than the logger level.
 With % it is possible to add some arguments to the message.voidLogger. log(int level, String msg, int val)Writes a log message to thePrintStreamif the parameterlevelis greater than the logger level.
 With % it is possible to add some arguments to the message.voidLogger. log(int level, String msg, int... values)Writes a log message to thePrintStreamif the parameterlevelis greater than the logger level.
 With % it is possible to add some arguments to the message.
- 
Uses of String in org.deepjava.runtime.mpc555.demoFields in org.deepjava.runtime.mpc555.demo declared as String Modifier and Type Field Description (package private) StringTest. str
- 
Uses of String in org.deepjava.runtime.mpc555.driverMethods in org.deepjava.runtime.mpc555.driver with parameters of type String Modifier and Type Method Description static voidBlueRS. connect(String connectTo)Connects to a device.
 To use this command, the device must be inBlueRS.MODE_AT.static intBlueRSCmdInt. connect(String partner)Tries to connect to a partner modulestatic voidBlueRS. sendCommand(String cmd)Sends a command to the Bluetooth module.
 To use this command, the device must be inBlueRS.MODE_AT.static RN131.StateRN131.State. valueOf(String name)Returns the enum constant of this type with the specified name.
- 
Uses of String in org.deepjava.runtime.mpc555.driver.ffsFields in org.deepjava.runtime.mpc555.driver.ffs declared as String Modifier and Type Field Description StringFile. nameMethods in org.deepjava.runtime.mpc555.driver.ffs with parameters of type String Modifier and Type Method Description static FileFFS. 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.utilMethods in org.deepjava.runtime.util with parameters of type String Modifier and Type Method Description static IntPacket.TypeIntPacket.Type. valueOf(String name)Returns the enum constant of this type with the specified name.
- 
Uses of String in org.deepjava.runtime.zynq7000.driverMethods in org.deepjava.runtime.zynq7000.driver with parameters of type String Modifier and Type Method Description static RN131.StateRN131.State. valueOf(String name)Returns the enum constant of this type with the specified name.static StateState. valueOf(String name)Returns the enum constant of this type with the specified name.
- 
Uses of String in org.deepjava.unsafeMethods in org.deepjava.unsafe with parameters of type String Modifier and Type Method Description static intUS. ADR_OF_METHOD(String name)Get absolute address of class methodstatic voidUS. ASM(String instr)Insert single machine code instruction
 
-