Package | Description |
---|---|
java.io |
Input/Output support
|
java.lang |
Core Java classes
|
java.lang.annotation |
Basic support for annotations
|
java.math | |
java.net |
Network communication through TCP and UDP sockets or URLs.
|
java.text |
Provides classes and interfaces for handling text, dates, numbers, and messages
in a manner independent of natural languages.
|
java.util |
Utilities
|
tijos.framework.appcenter |
Application center class
|
tijos.framework.eventcenter |
Event center class, which deals with events from hardware peripherals, such as GPIO events
|
tijos.framework.networkcenter.dns |
DNS client
|
tijos.framework.networkcenter.mqtt |
MQTT3.1.1 client
|
tijos.framework.networkcenter.ntp |
Network time protocol client class
|
tijos.framework.platform |
System Settings related classes, like host name and other settings
|
tijos.framework.platform.wlan |
WIFI class
|
tijos.framework.transducer.oled |
OLED classes
|
tijos.framework.util |
Utility
|
tijos.framework.util.base64 |
Utility classes for base64
|
tijos.framework.util.json |
JSON-java suppport
|
tijos.framework.util.logging |
Utility classes for logging
|
tijos.framework.util.text |
Dot matrix font class
|
Modifier and Type | Field and Description |
---|---|
String |
StreamTokenizer.sval
If the current token is a word token, this field contains a
string giving the characters of the word token.
|
Modifier and Type | Method and Description |
---|---|
String |
File.getName()
Returns the name of the file.
|
String |
LineNumberReader.readLine()
Read a line of text.
|
String |
DataInputStream.readLine()
Deprecated.
This method does not properly convert bytes to characters.
As of JDK 1.1, the preferred way to read lines of text is via the
BufferedReader.readLine() method. Programs that use the
DataInputStream class to read lines can be converted to use
the BufferedReader class by replacing code of the form:
with:DataInputStream d = new DataInputStream(in); BufferedReader d = new BufferedReader(new InputStreamReader(in)); |
String |
DataInput.readLine()
This method reads the next line of text data from an input stream.
|
String |
BufferedReader.readLine()
Reads a line of text.
|
String |
DataInputStream.readUTF()
See the general contract of the
readUTF
method of DataInput . |
String |
DataInput.readUTF()
This method reads a
String from an input stream that is
encoded in 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
modified UTF-8 format;
this string of characters is then returned as a String . |
String |
StringWriter.toString()
Return the buffer's current value as a string.
|
String |
StreamTokenizer.toString()
Returns the string representation of the current stream token and
the line number it occurs on.
|
String |
File.toString() |
String |
CharArrayWriter.toString()
Returns the chars in the internal array as a
String . |
String |
ByteArrayOutputStream.toString()
Returns the bytes in the internal array as a
String . |
String |
ByteArrayOutputStream.toString(int hibyte)
Deprecated.
|
String |
ByteArrayOutputStream.toString(String enc)
Returns the bytes in the internal array as a
String . |
Modifier and Type | Method and Description |
---|---|
boolean |
FilenameFilter.accept(File dir,
String name)
This method determines whether or not a given file should be included
in a directory listing.
|
PrintStream |
PrintStream.format(Locale locale,
String format,
Object... args) |
PrintWriter |
PrintWriter.format(String format,
Object... args) |
PrintStream |
PrintStream.format(String format,
Object... args) |
void |
PrintWriter.print(String str)
This method prints a
String to the stream. |
void |
PrintStream.print(String str)
This method prints a
String to the stream. |
PrintStream |
PrintStream.printf(Locale locale,
String format,
Object... args) |
PrintWriter |
PrintWriter.printf(String format,
Object... args) |
PrintStream |
PrintStream.printf(String format,
Object... args) |
void |
PrintWriter.println(String str)
This method prints a
String to the stream. |
void |
PrintStream.println(String str)
This method prints a
String to the stream. |
String |
ByteArrayOutputStream.toString(String enc)
Returns the bytes in the internal array as a
String . |
void |
Writer.write(String str)
This method writes all the characters in a
String to the
output. |
void |
StringWriter.write(String str)
Write a string.
|
void |
PrintWriter.write(String str)
This method writes the contents of the specified
String
to the underlying stream. |
void |
Writer.write(String str,
int offset,
int len)
This method writes
len chars from the String
starting at position offset . |
void |
StringWriter.write(String str,
int off,
int len)
Write a portion of a string.
|
void |
PrintWriter.write(String str,
int offset,
int count)
This method writes
count chars from the specified
String to the output starting at character position
offset into the String |
void |
FilterWriter.write(String str,
int offset,
int len)
This method writes
len chars from the String
starting at position offset . |
void |
CharArrayWriter.write(String str,
int offset,
int len)
This method writes
len chars from the passed in
String buf starting at index
offset into the internal buffer. |
void |
BufferedWriter.write(String s,
int off,
int len)
Writes a portion of a String.
|
void |
DataOutputStream.writeBytes(String s)
Writes out the string to the underlying output stream as a
sequence of bytes.
|
void |
DataOutput.writeBytes(String value)
This method writes all the bytes in a
String out to the
stream. |
void |
DataOutputStream.writeChars(String s)
Writes a string to the underlying output stream as a sequence of
characters.
|
void |
DataOutput.writeChars(String value)
This method writes all the characters of a
String to an
output stream as an array of char 's. |
void |
DataOutputStream.writeUTF(String str)
Writes a string to the underlying output stream using
modified UTF-8
encoding in a machine-independent manner.
|
void |
DataOutput.writeUTF(String value)
This method writes a Java
String to the stream in a modified
UTF-8 format. |
Constructor and Description |
---|
EOFException(String message)
Create an exception with a descriptive error message.
|
File(String name)
Creates a new File object.
|
FileInputStream(String name)
This method initializes a
FileInputStream to read from the
specified named file. |
FileNotFoundException(String s) |
FileOutputStream(String name)
This method initializes a
FileInputStream to read from the
specified named file. |
FileOutputStream(String name,
boolean append) |
FileReader(String name)
This method initializes a
FileReader instance to read from
the specified named file. |
FileWriter(String name)
This method intializes a new
FileWriter object to
write to the
specified named file. |
FileWriter(String name,
boolean append)
This method intializes a new
FileWriter object to
write to the
specified named file. |
InputStreamReader(InputStream os,
String charset) |
InterruptedIOException(String message)
Create an exception with a descriptive error message.
|
IOException(String message)
Create an exception with a descriptive error message.
|
OutputStreamWriter(OutputStream os,
String charset) |
PrintStream(String fileName)
This method initializes a new
PrintStream object to write
to the specified output File. |
PrintWriter(File file,
String enc)
This initializes a new PrintWriter object to write to the specified
file.
|
PrintWriter(String file)
This initializes a new PrintWriter object to write to the specified
file.
|
PrintWriter(String file,
String enc)
This initializes a new PrintWriter object to write to the specified
file.
|
StringBufferInputStream(String s)
Deprecated.
Creates a string input stream to read data from the specified string.
|
StringReader(String s)
Creates a new string reader.
|
UnsupportedEncodingException(String message)
Create an exception with a descriptive error message.
|
UTFDataFormatException(String message)
Create a new UTFDataFormatException with a descriptive error message.
|
Modifier and Type | Method and Description |
---|---|
String |
String.concat(String s) |
static String |
String.copyValueOf(char[] data) |
static String |
String.copyValueOf(char[] data,
int off,
int len) |
static String |
String.format(String format,
Object... args) |
String |
Throwable.getLocalizedMessage()
Can be overridden, to return localized messages.
|
String |
Throwable.getMessage()
Return the message associated with this Throwable object.
|
String |
Thread.getName()
Returns the string name of this thread.
|
static String |
System.getProperty(String name)
Returns
null . |
static String |
System.getProperty(String name,
String def)
Returns
def . |
String |
String.intern() |
String |
Enum.name() |
String |
String.replace(char oldChar,
char newChar) |
String[] |
String.split(String seperators)
Split this string around the matches of a character string.
|
String |
StringBuilder.substring(int start) |
String |
StringBuffer.substring(int start) |
String |
String.substring(int start)
Return substring from starting position to the end of the String
|
String |
StringBuilder.substring(int start,
int end) |
String |
StringBuffer.substring(int start,
int end) |
String |
String.substring(int start,
int end)
Return substring from starting index to position before end index
|
static String |
Integer.toBinaryString(int v) |
static String |
Long.toBinaryString(long v) |
static String |
Integer.toHexString(int v)
Return the hex representation of an int as a String
|
static String |
Long.toHexString(long v) |
String |
String.toLowerCase() |
static String |
Integer.toOctalString(int v) |
static String |
Long.toOctalString(long v) |
String |
Throwable.toString()
Return a string version of the Throwable.
|
String |
StringBuilder.toString() |
String |
StringBuffer.toString() |
String |
String.toString()
Returns itself.
|
String |
Short.toString() |
String |
Object.toString() |
String |
Long.toString() |
String |
Integer.toString()
Returns a String object representing this Integer's value.
|
String |
Float.toString() |
String |
Enum.toString() |
String |
Double.toString() |
String |
Class.toString() |
String |
Character.toString() |
String |
CharSequence.toString()
Returns the complete
CharSequence as a String . |
String |
Byte.toString() |
String |
Boolean.toString() |
static String |
Boolean.toString(boolean b) |
static String |
Byte.toString(byte b) |
static String |
Character.toString(char c) |
static String |
Double.toString(double d)
Convert a double to a String
|
static String |
Float.toString(float f)
Convert a float to a String
|
static String |
Integer.toString(int v)
Returns a new String object representing the specified integer.
|
static String |
Integer.toString(int v,
int radix) |
static String |
Long.toString(long v) |
static String |
Long.toString(long v,
int radix) |
static String |
Short.toString(short b) |
String |
String.toUpperCase() |
String |
String.trim() |
static String |
String.valueOf(boolean b) |
static String |
String.valueOf(char c) |
static String |
String.valueOf(char[] c) |
static String |
String.valueOf(char[] c,
int start,
int length) |
static String |
String.valueOf(double d) |
static String |
String.valueOf(float f) |
static String |
String.valueOf(int i) |
static String |
String.valueOf(long i) |
static String |
String.valueOf(Object aObj)
Converts an Object to a String
|
Modifier and Type | Method and Description |
---|---|
StringBuilder |
StringBuilder.append(String s) |
StringBuffer |
StringBuffer.append(String s) |
int |
String.compareTo(String str) |
int |
String.compareToIgnoreCase(String str)
Compares this String and another String (case insensitive).
|
String |
String.concat(String s) |
static Long |
Long.decode(String s) |
static Integer |
Integer.decode(String s) |
boolean |
String.endsWith(String suffix)
Predicate which determines if this String ends with a given suffix.
|
boolean |
String.equalsIgnoreCase(String s) |
static String |
String.format(String format,
Object... args) |
static Class<?> |
Class.forName(String aName) |
static boolean |
Boolean.getBoolean(String name) |
byte[] |
String.getBytes(String charset)
Get bytes in US Acsii
|
static Integer |
Integer.getInteger(String name) |
static Integer |
Integer.getInteger(String name,
int def) |
static Integer |
Integer.getInteger(String name,
Integer def) |
static Long |
Long.getLong(String name) |
static Long |
Long.getLong(String name,
int def) |
static Long |
Long.getLong(String name,
Long def) |
static String |
System.getProperty(String name)
Returns
null . |
static String |
System.getProperty(String name,
String def)
Returns
def . |
int |
StringBuilder.indexOf(String str) |
int |
StringBuffer.indexOf(String str) |
int |
String.indexOf(String str)
Finds the location of a string within this string
|
int |
StringBuilder.indexOf(String str,
int fromIndex) |
int |
StringBuffer.indexOf(String str,
int fromIndex) |
int |
String.indexOf(String str,
int fromIndex)
Find location of String starting at a given index
|
StringBuilder |
StringBuilder.insert(int offset,
String str)
Insert the
String argument into this
StringBuffer . |
StringBuffer |
StringBuffer.insert(int offset,
String str)
Insert the
String argument into this
StringBuffer . |
int |
StringBuilder.lastIndexOf(String str) |
int |
StringBuffer.lastIndexOf(String str) |
int |
String.lastIndexOf(String str)
Find the last occurrence of a String
|
int |
StringBuilder.lastIndexOf(String str,
int fromIndex) |
int |
StringBuffer.lastIndexOf(String str,
int fromIndex) |
int |
String.lastIndexOf(String str,
int fromIndex)
Find last occurrence of s string from a given index
|
static boolean |
Boolean.parseBoolean(String s) |
static byte |
Byte.parseByte(String s) |
static byte |
Byte.parseByte(String s,
int radix) |
static double |
Double.parseDouble(String s)
Converts a String value into a double.
|
static float |
Float.parseFloat(String s)
Converts a String value into a float
|
static int |
Integer.parseInt(String s) |
static int |
Integer.parseInt(String s,
int radix)
This method parses an int from a String.
|
static long |
Long.parseLong(String s) |
static long |
Long.parseLong(String s,
int radix) |
static short |
Short.parseShort(String s) |
static short |
Short.parseShort(String s,
int radix) |
boolean |
String.regionMatches(boolean ignoreCase,
int toffset,
String other,
int ooffset,
int len)
Tests if two string regions are equal.
|
boolean |
String.regionMatches(int toffset,
String other,
int ooffset,
int len)
Tests if two string regions are equal.
|
StringBuilder |
StringBuilder.replace(int start,
int end,
String str)
Replace characters between index
start (inclusive) and
end (exclusive) with str . |
StringBuffer |
StringBuffer.replace(int start,
int end,
String str)
Replace characters between index
start (inclusive) and
end (exclusive) with str . |
void |
Thread.setName(String name)
Sets the string name associated with this thread.
|
String[] |
String.split(String seperators)
Split this string around the matches of a character string.
|
boolean |
String.startsWith(String s)
Predicate which determines if this String starts with a given prefix.
|
boolean |
String.startsWith(String s,
int begin) |
static <T extends Enum<T>> |
Enum.valueOf(Class<T> enumclas,
String name)
Deprecated.
not implemented in TiJOS
|
static Short |
Short.valueOf(String s) |
static Long |
Long.valueOf(String s) |
static Integer |
Integer.valueOf(String s) |
static Float |
Float.valueOf(String s) |
static Double |
Double.valueOf(String s) |
static Byte |
Byte.valueOf(String s) |
static Boolean |
Boolean.valueOf(String s) |
static Short |
Short.valueOf(String s,
int radix) |
static Long |
Long.valueOf(String s,
int radix) |
static Integer |
Integer.valueOf(String s,
int radix) |
static Byte |
Byte.valueOf(String s,
int radix) |
Constructor and Description |
---|
ArithmeticException(String message) |
ArrayIndexOutOfBoundsException(String s)
Constructs an
ArrayIndexOutOfBoundsException class
with the specified detail message. |
AssertionError(String message) |
Boolean(String s) |
Byte(String s) |
ClassCastException(String message) |
ClassNotFoundException(String message) |
CloneNotSupportedException(String message) |
Double(String val) |
Error(String message) |
Exception(String message) |
Exception(String message,
Throwable cause) |
Float(String s) |
IllegalArgumentException(String s)
Constructs an
IllegalArgumentException with the
specified detail message. |
IllegalArgumentException(String message,
Throwable cause)
Constructs an
IllegalArgumentException with the
specified detail message and cause. |
IllegalMonitorStateException(String message) |
IllegalStateException(String message) |
IndexOutOfBoundsException(String s)
Constructs an
IndexOutOfBoundsException class
with the specified detail message. |
Integer(String s) |
InternalError(String message) |
InterruptedException(String message) |
Long(String s) |
NegativeArraySizeException(String message) |
NoClassDefFoundError(String message) |
NoSuchFieldError(String message) |
NoSuchMethodError(String message) |
NullPointerException(String message) |
NumberFormatException(String s) |
OutOfMemoryError(String message) |
RuntimeException(String message)
Constructs a new runtime exception with the specified detail message.
|
RuntimeException(String message,
Throwable cause)
Constructs a new runtime exception with the specified detail message
and cause.
|
Short(String s) |
StackOverflowError(String message) |
String(byte[] b,
int off,
int len,
String charset)
Create a String from a byte array
|
String(byte[] b,
String charset)
Create a String from a byte array
|
String(String s) |
StringBuffer(String aString) |
StringBuilder(String aString) |
StringIndexOutOfBoundsException(String s) |
Thread(Runnable target,
String name) |
Thread(String name) |
Throwable(String message)
Create a Throwable object.
|
Throwable(String message,
Throwable cause)
Create a Throwable object.
|
UnsupportedOperationException(String s) |
VirtualMachineError(String message) |
Modifier and Type | Method and Description |
---|---|
String |
Annotation.toString() |
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.
|
Modifier and Type | Method and Description |
---|---|
static RoundingMode |
RoundingMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
Modifier and Type | Method and Description |
---|---|
String |
URI.getAuthority()
Returns the decoded authority part of this URI
|
String |
InetAddress.getCanonicalHostName()
Returns the canonical hostname represented by this InetAddress
|
String |
URI.getFragment()
Returns the fragment of the URI
|
String |
URI.getHost()
Returns the hostname of the URI
|
String |
InetAddress.getHostAddress()
Returns the IP address of this object as a String.
|
String |
Inet6Address.getHostAddress()
Returns the IP address string in textual presentation
|
String |
Inet4Address.getHostAddress()
Returns the address as string
|
String |
InetSocketAddress.getHostName()
Returns
hostname |
String |
InetAddress.getHostName()
Returns the hostname for this address.
|
String |
URISyntaxException.getInput()
Returns the bad input string.
|
String |
URISyntaxException.getMessage()
Returns a message describing the parse error, as if by
getReason() + (getIndex() >= 0 ? " at index " + getIndex() : "")
+ ": " + getInput() . |
String |
URI.getPath()
Returns the path of the URI
|
String |
URI.getQuery()
Returns the query of the URI
|
String |
URI.getRawAuthority()
Returns the raw authority part of this URI
|
String |
URI.getRawFragment()
Return the raw fragment part of this URI
|
String |
URI.getRawPath()
Returns the raw path part of this URI
|
String |
URI.getRawQuery()
Returns the raw query part of this URI
|
String |
URI.getRawSchemeSpecificPart()
Returns the raw scheme specific part of this URI.
|
String |
URI.getRawUserInfo()
Returns the raw user info part of this URI
|
String |
URISyntaxException.getReason()
Returns the reason for the failure.
|
String |
URI.getScheme()
Returns the scheme of the URI
|
String |
URI.getSchemeSpecificPart()
Returns the decoded scheme specific part of this URI.
|
String |
URI.getUserInfo()
Returns the decoded user info part of this URI
|
String |
URI.toASCIIString()
Returns the URI as US-ASCII string.
|
String |
URI.toString()
Returns the URI as a String.
|
String |
Socket.toString()
Converts this
Socket to a String . |
String |
ServerSocket.toString()
Returns the value of this socket as a
String . |
String |
InetSocketAddress.toString()
Returns the
InetSocketAddress as string |
String |
InetAddress.toString()
Converts this address to a String.
|
Modifier and Type | Method and Description |
---|---|
static URI |
URI.create(String str)
Create an URI from the given string
|
static InetSocketAddress |
InetSocketAddress.createUnresolved(String hostname,
int port)
Creates an unresolved
InetSocketAddress object. |
static InetAddress[] |
InetAddress.getAllByName(String hostname)
Returns an array of InetAddress objects representing all the host/ip
addresses of a given host, given the host's name.
|
static InetAddress |
InetAddress.getByAddress(String host,
byte[] addr)
Creates an InetAddress based on the provided host name and IP address.
|
static Inet6Address |
Inet6Address.getByAddress(String host,
byte[] addr,
int scopeId)
Creates a scoped Inet6Address where the scope has an integer id.
|
static InetAddress |
InetAddress.getByLiteral(String literal)
Returns an InetAddress object representing the IP address of the given
literal IP address in dotted decimal format such as "127.0.0.1".
|
static InetAddress |
InetAddress.getByName(String hostname)
Returns an InetAddress object representing the IP address of the given
hostname.
|
URI |
URI.resolve(String str)
Resolves the given URI string against this URI
|
Constructor and Description |
---|
InetSocketAddress(String hostname,
int port)
Constructs an InetSocketAddress instance.
|
Socket(String host,
int port)
Initializes a new instance of
Socket and connects to the
hostname and port specified as arguments. |
Socket(String host,
int port,
boolean stream)
Deprecated.
Use the
DatagramSocket class to create
datagram oriented sockets. |
Socket(String host,
int port,
InetAddress localAddr,
int localPort)
Initializes a new instance of
Socket that connects to the
named host on the specified port and binds to the specified local address
and port. |
SocketException(String message)
Create a new instance with a descriptive error message.
|
SocketTimeoutException(String message)
Create a new instance with a descriptive error message.
|
UnknownHostException(String message)
Create a new instance with a descriptive error message, such as the name of
the host that could not be resolved.
|
URI(String str)
Creates an URI from the given string
|
URI(String scheme,
String ssp,
String fragment)
Create an URI from the given components
|
URI(String scheme,
String userInfo,
String host,
int port,
String path,
String query,
String fragment)
Create an URI from the given components
|
URI(String scheme,
String host,
String path,
String fragment)
Create an URI from the given components
|
URI(String scheme,
String authority,
String path,
String query,
String fragment)
Create an URI from the given components
|
URISyntaxException(String input,
String msg)
Create an exception from the invalid string, with the index set to -1.
|
URISyntaxException(String input,
String msg,
int index)
Create an exception from the invalid string, with the index of the point of
failure.
|
Modifier and Type | Field and Description |
---|---|
static String |
DecimalFormat.PATTERN_EXPONENT |
static String |
DecimalFormat.PATTERN_INFINITY |
static String |
DecimalFormat.PATTERN_NaN |
Modifier and Type | Method and Description |
---|---|
String |
NumberFormat.format(double number)
Specialization of format.
|
String |
NumberFormat.format(long number)
Specialization of format.
|
String |
Format.format(Object obj)
Formats an object to produce a string.
|
String |
DecimalFormat.getNegativePrefix()
Get the negative prefix.
|
String |
DecimalFormat.getNegativeSuffix()
Get the negative suffix.
|
String |
DecimalFormat.getPositivePrefix()
Get the positive prefix.
|
String |
DecimalFormat.getPositiveSuffix()
Get the positive suffix.
|
String |
DecimalFormat.toLocalizedPattern()
Synthesizes a localized pattern string that represents the current
state of this Format object.
|
String |
DecimalFormat.toPattern()
Synthesizes a pattern string that represents the current state
of this Format object.
|
String |
ParsePosition.toString()
Return a string representation of this ParsePosition.
|
String |
FieldPosition.toString()
Return a string representation of this FieldPosition.
|
String |
AttributedCharacterIterator.Attribute.toString()
Returns a string representation of the object.
|
String |
Annotation.toString()
Returns the String representation of this Annotation.
|
Modifier and Type | Method and Description |
---|---|
void |
DecimalFormat.applyLocalizedPattern(String pattern)
Apply the given pattern to this Format object.
|
void |
DecimalFormat.applyPattern(String pattern)
Apply the given pattern to this Format object.
|
Number |
NumberFormat.parse(String source)
Parses text from the beginning of the given string to produce a number.
|
abstract Number |
NumberFormat.parse(String source,
ParsePosition parsePosition)
Returns a Long if possible (e.g., within the range [Long.MIN_VALUE,
Long.MAX_VALUE] and with no decimals), otherwise a Double.
|
Number |
DecimalFormat.parse(String text,
ParsePosition pos)
Parses text from a string to produce a
Number . |
Object |
Format.parseObject(String source)
Parses text from the beginning of the given string to produce an object.
|
Object |
NumberFormat.parseObject(String source,
ParsePosition pos)
Parses text from a string to produce a
Number . |
abstract Object |
Format.parseObject(String source,
ParsePosition pos)
Parses text from a string to produce an object.
|
void |
DecimalFormat.setNegativePrefix(String newValue)
Set the negative prefix.
|
void |
DecimalFormat.setNegativeSuffix(String newValue)
Set the negative suffix.
|
void |
DecimalFormat.setPositivePrefix(String newValue)
Set the positive prefix.
|
void |
DecimalFormat.setPositiveSuffix(String newValue)
Set the positive suffix.
|
void |
StringCharacterIterator.setText(String text)
Reset this iterator to point to a new string.
|
Constructor and Description |
---|
AttributedString(String text)
Constructs an AttributedString instance with the given text.
|
AttributedString(String text,
Map<? extends AttributedCharacterIterator.Attribute,?> attributes)
Constructs an AttributedString instance with the given text and attributes.
|
DecimalFormat(String pattern)
Creates a DecimalFormat using the given pattern and the symbols
for the default locale.
|
ParseException(String s,
int errorOffset)
Constructs a ParseException with the specified detail message and
offset.
|
StringCharacterIterator(String text)
Constructs an iterator with an initial index of 0.
|
StringCharacterIterator(String text,
int pos)
Constructs an iterator with the specified initial index.
|
StringCharacterIterator(String text,
int begin,
int end,
int pos)
Constructs an iterator over the given range of the given string, with the
index set at the specified position.
|
Modifier and Type | Method and Description |
---|---|
static String |
Arrays.deepToString(Object[] v) |
String |
MissingResourceException.getClassName()
Gets the name of the resource bundle, for which a resource is missing.
|
String |
Locale.getCountry()
Returns the country code of this locale.
|
String |
Locale.getDisplayCountry()
Returns the country name of this locale localized to the
default locale.
|
String |
Locale.getDisplayCountry(Locale inLocale)
Gets the name of the country specified by this locale, in a form suitable
for display to the user.
|
String |
Locale.getDisplayLanguage()
Gets the country name suitable for display to the user, formatted
for the default locale.
|
String |
Locale.getDisplayLanguage(Locale inLocale)
Gets the name of the language specified by this locale, in a form suitable
for display to the user.
|
String |
Locale.getDisplayName()
Gets all local components suitable for display to the user, formatted
for the default locale.
|
String |
Locale.getDisplayName(Locale locale)
Gets all local components suitable for display to the user, formatted
for a specified locale.
|
String |
Locale.getDisplayVariant()
Returns the variant name of this locale localized to the
default locale.
|
String |
Locale.getDisplayVariant(Locale inLocale)
Gets the name of the variant specified by this locale, in a form suitable
for display to the user.
|
String |
Locale.getISO3Country()
Returns the three-letter ISO country abbrevation of the locale.
|
String |
Locale.getISO3Language()
Returns the three-letter ISO language abbrevation of this locale.
|
String |
MissingResourceException.getKey()
Gets the key of the resource that is missing bundle, this is an empty
string if the whole resource bundle is missing.
|
String |
Locale.getLanguage()
Returns the language code of this locale.
|
String |
Properties.getProperty(String key)
Gets the property with the specified key in this property list.
|
String |
Properties.getProperty(String key,
String defaultValue)
Gets the property with the specified key in this property list.
|
String |
Locale.getVariant()
Returns the variant code of this locale.
|
String |
StringTokenizer.nextToken()
Returns the nextToken of the string.
|
String |
StringTokenizer.nextToken(String delim)
Returns the nextToken, changing the delimiter set to the given
delim . |
String |
Vector.toString()
Returns a string representation of this Vector in the form
"[element0, element1, ...
|
String |
UUID.toString()
Returns a String representation of the UUID.
|
String |
Locale.toString()
Gets the string representation of the current locale.
|
String |
Hashtable.toString()
Converts this Hashtable to a String, surrounded by braces, and with
key/value pairs listed with an equals sign between, separated by a
comma and space.
|
String |
Formatter.toString()
Returns the result of applying
Object.toString()
to the underlying output stream. |
String |
Date.toString()
Returns a string representation of this date using
the following date format:
|
String |
Calendar.toString()
Returns a string representation of this object.
|
String |
BitSet.toString()
Returns the string representation of this bit set.
|
String |
AbstractMap.toString()
Returns a String representation of this map.
|
String |
AbstractMap.SimpleEntry.toString()
This provides a string representation of the entry.
|
String |
AbstractCollection.toString()
Creates a String representation of the Collection.
|
static String |
Arrays.toString(boolean[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(byte[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(char[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(double[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(float[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(int[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(long[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(Object[] v)
Returns a String representation of the argument array.
|
static String |
Arrays.toString(short[] v)
Returns a String representation of the argument array.
|
Modifier and Type | Method and Description |
---|---|
Formatter |
Formatter.format(Locale loc,
String fmt,
Object... args)
Outputs a formatted string based on the supplied specification,
fmt , and its arguments using the specified locale. |
Formatter |
Formatter.format(String format,
Object... args)
Outputs a formatted string based on the supplied specification,
fmt , and its arguments using the formatter's locale. |
static UUID |
UUID.fromString(String name)
Creates a UUID object from a Sting representation.
|
String |
Properties.getProperty(String key)
Gets the property with the specified key in this property list.
|
String |
Properties.getProperty(String key,
String defaultValue)
Gets the property with the specified key in this property list.
|
String |
StringTokenizer.nextToken(String delim)
Returns the nextToken, changing the delimiter set to the given
delim . |
void |
Properties.save(OutputStream out,
String header)
Deprecated.
use
Properties.store(OutputStream, String) instead |
Object |
Properties.setProperty(String key,
String value)
Adds the given key/value pair to this properties.
|
void |
Properties.store(OutputStream out,
String header)
Writes the key/value pairs to the given output stream, in a format
suitable for
load .If header is not null, this method writes a comment containing the header as first line to the stream. |
Constructor and Description |
---|
ConcurrentModificationException(String message) |
Formatter(File file,
String charset)
Constructs a new
Formatter using the default
locale, with the specified file as the output stream
and the supplied character set. |
Formatter(File file,
String charset,
Locale loc)
Constructs a new
Formatter using the specified
file as the output stream with the supplied character set
and locale. |
Formatter(OutputStream out,
String charset)
Constructs a new
Formatter using the default
locale, with the specified file output stream and the
supplied character set. |
Formatter(OutputStream out,
String charset,
Locale loc)
Constructs a new
Formatter using the specified
output stream with the supplied character set and locale. |
Formatter(String file)
Constructs a new
Formatter using the default
locale and character set, with the specified file as the
output stream. |
Formatter(String file,
String charset)
Constructs a new
Formatter using the default
locale, with the specified file as the output stream
and the supplied character set. |
Formatter(String file,
String charset,
Locale loc)
Constructs a new
Formatter using the specified
file as the output stream with the supplied character set
and locale. |
Locale(String language)
Creates a new locale for a language.
|
Locale(String language,
String country)
Creates a new locale for the given language and country.
|
Locale(String language,
String country,
String variant)
Creates a new locale for the given language and country.
|
MissingResourceException(String s,
String className,
String key)
Creates a new exception, with the specified parameters.
|
NoSuchElementException(String s) |
StringTokenizer(String str)
Creates a new StringTokenizer for the string
str ,
that should split on the default delimiter set (space, tab,
newline, return and formfeed), and which doesn't return the
delimiters. |
StringTokenizer(String str,
String delim)
Create a new StringTokenizer, that splits the given string on
the given delimiter characters.
|
StringTokenizer(String str,
String delim,
boolean returnDelims)
Create a new StringTokenizer, that splits the given string on
the given delimiter characters.
|
Timer(String name)
Create a new Timer whose Thread has the indicated name.
|
Timer(String name,
boolean daemon)
Create a new Timer whose Thread has the indicated name.
|
Modifier and Type | Method and Description |
---|---|
String |
TiAPP.getDescription()
Gets the APP description string
|
String |
TiAPP.getName()
Gets the APP name string
|
String |
TiAPP.getTypeName()
Gets APP type name
|
Modifier and Type | Method and Description |
---|---|
TiAPP |
TiAPPManager.activate(String typeName)
Activate the current APP
|
void |
TiAPP.execute(boolean immediate,
String args)
Execute the APP
|
Modifier and Type | Method and Description |
---|---|
static TiEventType |
TiEventType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
Modifier and Type | Method and Description |
---|---|
String[] |
TiDNS.getServer()
Gets the DNS server address
|
Modifier and Type | Method and Description |
---|---|
void |
TiDNS.changeServer(String primaryAddress,
String secondaryAddress)
Change the DNS server address, effective at next startup
|
Modifier and Type | Method and Description |
---|---|
static String |
MqttClient.generateClientId()
Returns a randomly generated client identifier based on the the fixed prefix
(tijos) and the system time.
|
String |
MqttClient.getClientId() |
String |
MqttConnectOptions.getLWTTopic() |
String |
MqttConnectOptions.getPassword()
Returns the password to use for the connection.
|
String |
MqttClient.getServerURI() |
String |
MqttConnectOptions.getUserName()
Returns the user name to use for the connection.
|
String |
MqttConnectOptions.toString() |
Modifier and Type | Method and Description |
---|---|
void |
MqttClientListener.messageArrived(Object userContext,
String topic,
byte[] payload)
the event to indicate that there is a topic update from server
|
int |
MqttClient.publish(String topic,
byte[] payload,
int qos,
boolean retained)
publish topic to the server
|
void |
MqttClientListener.publishCompleted(Object userContext,
int msgId,
String topic,
int result)
the event to indicate the result of the topic publish
|
void |
MqttConnectOptions.setPassword(String password)
Sets the password to use for the connection.
|
void |
MqttConnectOptions.setUserName(String userName)
Sets the user name to use for the connection.
|
void |
MqttConnectOptions.setWill(String topic,
byte[] payload,
int qos,
boolean retained)
Sets the "Last Will and Testament" (LWT) for the connection.
|
int |
MqttClient.subscribe(String topic,
int qos)
subscribe a topic from the server
|
void |
MqttClientListener.subscribeCompleted(Object userContext,
int msgId,
String topic,
int result)
the event to indicate the result of the topic subscribe
|
int |
MqttClient.unsubscribe(String topic)
unsubscribe a topic from the server
|
void |
MqttClientListener.unsubscribeCompleted(Object userContext,
int msgId,
String topic,
int result)
the event to indicate the result of the topic unsubscribe
|
static int |
MqttConnectOptions.validateURI(String srvURI)
Validate a URI
|
Constructor and Description |
---|
MqttClient(String serverURI,
String clientId)
Initialize the MQTT server URI, client id
|
MqttException(String message)
Create an exception with a descriptive error message.
|
Modifier and Type | Field and Description |
---|---|
static String |
TimeStamp.NTP_DATE_FORMAT
Default NTP date string format.
|
static String |
NtpV3Packet.TYPE_DAYTIME |
static String |
NtpV3Packet.TYPE_ICMP |
static String |
NtpV3Packet.TYPE_NTP |
static String |
NtpV3Packet.TYPE_TIME |
Modifier and Type | Method and Description |
---|---|
static String |
NtpUtils.getHostAddress(int address)
Returns 32-bit integer address to IPv4 address string "%d.%d.%d.%d" format.
|
String |
NtpV3Packet.getModeName() |
String |
NtpV3Impl.getModeName()
Return human-readable name of message mode type as described in
RFC 1305.
|
static String |
NtpUtils.getModeName(int mode)
Return human-readable name of message mode type (RFC 1305).
|
static String |
NtpUtils.getRefAddress(NtpV3Packet packet)
Returns NTP packet reference identifier as IP address.
|
static String |
NtpUtils.getReferenceClock(NtpV3Packet message)
Get refId as reference clock string (e.g.
|
String |
NtpV3Packet.getReferenceIdString() |
String |
NtpV3Impl.getReferenceIdString()
Returns the reference id string.
|
String |
NtpV3Packet.getType()
Return type of time packet.
|
String |
NtpV3Impl.getType()
Return type of time packet.
|
String |
TimeStamp.toDateString()
Converts this
TimeStamp object to a String
of the form:
|
String |
TimeStamp.toString()
Converts this
TimeStamp object to a String . |
String |
NtpV3Impl.toString()
Returns details of NTP packet as a string.
|
static String |
TimeStamp.toString(long ntpTime)
Converts 64-bit NTP timestamp value to a
String . |
String |
TimeStamp.toUTCString()
Converts this
TimeStamp object to a String
of the form:
|
Modifier and Type | Method and Description |
---|---|
List<String> |
TimeInfo.getComments()
Return list of comments (if any) during processing of NTP packet.
|
Modifier and Type | Method and Description |
---|---|
void |
TimeInfo.addComment(String comment)
Add comment (error/warning) to list of comments associated
with processing of NTP parameters.
|
static TimeStamp |
TimeStamp.parseNtpString(String s)
Parses the string argument as a NTP hexidecimal timestamp representation string
(e.g.
|
Constructor and Description |
---|
TimeStamp(String hexStamp)
Constructs a newly allocated NTP timestamp object
that represents the value represented by the string
in hexdecimal form (e.g.
|
Constructor and Description |
---|
TimeInfo(NtpV3Packet message,
long returnTime,
List<String> comments)
Create TimeInfo object with raw packet message and destination time received.
|
TimeInfo(NtpV3Packet message,
long returnTime,
List<String> comments,
boolean doComputeDetails)
Create TimeInfo object with raw packet message and destination time received.
|
Modifier and Type | Method and Description |
---|---|
void |
TiSettings.renameHost(String name)
Rename the host
|
Modifier and Type | Method and Description |
---|---|
String |
TiWiFi.getAddress()
Gets the address of WiFi
|
String |
TiWiFi.getPassword()
Gets the WiFi password
|
String |
TiWiFi.getSoftAPAddress()
Gets the address of softAP of WiFi
|
String |
TiWiFi.getSoftAPPassword()
Gets the WiFi softAP password
|
String |
TiWiFi.getSoftAPSSID()
Gets the WiFi softAP SSID
|
String[] |
TiWiFi.getSoftAPStaticAddress()
Gets the WiFi softAP static address
|
String |
TiWiFi.getSSID()
Gets the WiFi SSID
|
String[] |
TiWiFi.getStaticAddress()
Gets the WiFi static address
|
Modifier and Type | Method and Description |
---|---|
void |
TiWiFi.changePassword(String password)
Change the WiFi password, effective at next startup
|
void |
TiWiFi.changeSoftAPPassword(String password)
Change the WiFi softAP password, effective at next startup
|
void |
TiWiFi.changeSoftAPSSID(String SSID)
Change the WiFi softAP SSID, effective at next startup
|
void |
TiWiFi.changeSSID(String SSID)
Change the WiFi SSID, effective at next startup
|
void |
TiWiFi.setSoftAPStaticAddress(String localAddress,
String gateWayAddress,
int subnetPrefix)
Set the WiFi softAP static address, effective at next startup
|
void |
TiWiFi.setStaticAddress(String localAddress,
String gateWayAddress,
int subnetPrefix)
Set the WiFi static address, effective at next startup
|
Modifier and Type | Method and Description |
---|---|
void |
TiOLED_UG2864.output(String text)
Output string text,
position automatic movement |
void |
TiOLED_UG2864.print(int lineId,
int columnId,
String text)
Print string text,
position automatic movement, data that exceeds the length will be automatically deleted |
Modifier and Type | Method and Description |
---|---|
static String |
Formatter.format(double value,
String pattern)
Format double into a string with pattern
|
static String |
Formatter.format(float value,
String pattern)
Format float into a string with pattern
|
static String |
Formatter.toHexString(byte value)
Convert byte to a string in hex, like %02x
|
static String |
Formatter.toHexString(byte[] byteArray)
Convert byte array to a string
|
static String |
Formatter.toHexString(byte[] values,
int offset,
int length,
String seperate)
Convert byte array to a string
|
Modifier and Type | Method and Description |
---|---|
static String |
Formatter.format(double value,
String pattern)
Format double into a string with pattern
|
static String |
Formatter.format(float value,
String pattern)
Format float into a string with pattern
|
static byte[] |
Formatter.hexStringToByte(String str)
Hex string to byte array
|
static String |
Formatter.toHexString(byte[] values,
int offset,
int length,
String seperate)
Convert byte array to a string
|
Modifier and Type | Method and Description |
---|---|
static String |
Base64.encode(byte[] buf)
Base64 encode a byte array, with no line wrapping.
|
static String |
Base64.encode(byte[] buf,
int tw)
Base64 encode a byte array, returning the returning string.
|
static String |
Base64.encode(byte[] buf,
int offset,
int length,
int tw)
Base64 encode a byte array, returning the returning string.
|
Modifier and Type | Method and Description |
---|---|
static byte[] |
Base64.decode(String b64)
Decode a Base-64 string into a byte array.
|
Modifier and Type | Method and Description |
---|---|
static String |
JSONObject.doubleToString(double d)
Produce a string from a double.
|
static String[] |
JSONObject.getNames(JSONObject jo)
Get an array of field names from a JSONObject.
|
String |
JSONArray.getString(int index)
Get the string associated with an index.
|
String |
JSONObject.getString(String key)
Get the string associated with a key.
|
String |
JSONArray.join(String separator)
Make a string from the contents of this JSONArray.
|
String |
JSONTokener.next(int n)
Get the next n characters.
|
String |
JSONTokener.nextString(char quote)
Return the characters up to the next close quote character.
|
String |
JSONTokener.nextTo(char delimiter)
Get the text up but not including the specified character or the
end of line, whichever comes first.
|
String |
JSONTokener.nextTo(String delimiters)
Get the text up but not including one of the specified delimiter
characters or the end of line, whichever comes first.
|
static String |
JSONObject.numberToString(Number number)
Produce a string from a Number.
|
String |
JSONArray.optString(int index)
Get the optional string value associated with an index.
|
String |
JSONArray.optString(int index,
String defaultValue)
Get the optional string associated with an index.
|
String |
JSONObject.optString(String key)
Get an optional string associated with a key.
|
String |
JSONObject.optString(String key,
String defaultValue)
Get an optional string associated with a key.
|
static String |
JSONObject.quote(String string)
Produce a string in double quotes with backslash sequences in all the
right places.
|
String |
JSONString.toJSONString()
The
toJSONString method allows a class to produce its own JSON
serialization. |
String |
JSONTokener.toString()
Make a printable string of this JSONTokener.
|
String |
JSONStringer.toString()
Return the JSON text.
|
String |
JSONObject.toString()
Make a JSON text of this JSONObject.
|
String |
JSONArray.toString()
Make a JSON text of this JSONArray.
|
String |
JSONObject.toString(int indentFactor)
Make a prettyprinted JSON text of this JSONObject.
|
String |
JSONArray.toString(int indentFactor)
Make a prettyprinted JSON text of this JSONArray.
|
static String |
JSONObject.valueToString(Object value)
Make a JSON text of an Object value.
|
Modifier and Type | Method and Description |
---|---|
Iterator<String> |
JSONObject.keys()
Get an enumeration of the keys of the JSONObject.
|
Set<String> |
JSONObject.keySet()
Get a set of keys of the JSONObject.
|
Map<String,Object> |
JSONObject.toMap()
Returns a java.util.Map containing all of the entries in this object.
|
Modifier and Type | Method and Description |
---|---|
JSONObject |
JSONObject.accumulate(String key,
Object value)
Accumulate values under a key.
|
JSONObject |
JSONObject.append(String key,
Object value)
Append values to the array under a key.
|
Object |
JSONObject.get(String key)
Get the value object associated with a key.
|
boolean |
JSONObject.getBoolean(String key)
Get the boolean value associated with a key.
|
double |
JSONObject.getDouble(String key)
Get the double value associated with a key.
|
int |
JSONObject.getInt(String key)
Get the int value associated with a key.
|
JSONArray |
JSONObject.getJSONArray(String key)
Get the JSONArray value associated with a key.
|
JSONObject |
JSONObject.getJSONObject(String key)
Get the JSONObject value associated with a key.
|
long |
JSONObject.getLong(String key)
Get the long value associated with a key.
|
String |
JSONObject.getString(String key)
Get the string associated with a key.
|
boolean |
JSONObject.has(String key)
Determine if the JSONObject contains a specific key.
|
JSONObject |
JSONObject.increment(String key)
Increment a property of a JSONObject.
|
boolean |
JSONObject.isNull(String key)
Determine if the value associated with the key is null or if there is no
value.
|
String |
JSONArray.join(String separator)
Make a string from the contents of this JSONArray.
|
JSONWriter |
JSONWriter.key(String string)
Append a key.
|
String |
JSONTokener.nextTo(String delimiters)
Get the text up but not including one of the specified delimiter
characters or the end of line, whichever comes first.
|
Object |
JSONObject.opt(String key)
Get an optional value associated with a key.
|
boolean |
JSONObject.optBoolean(String key)
Get an optional boolean associated with a key.
|
boolean |
JSONObject.optBoolean(String key,
boolean defaultValue)
Get an optional boolean associated with a key.
|
double |
JSONObject.optDouble(String key)
Get an optional double associated with a key, or NaN if there is no such
key or if its value is not a number.
|
double |
JSONObject.optDouble(String key,
double defaultValue)
Get an optional double associated with a key, or the defaultValue if
there is no such key or if its value is not a number.
|
int |
JSONObject.optInt(String key)
Get an optional int value associated with a key, or zero if there is no
such key or if the value is not a number.
|
int |
JSONObject.optInt(String key,
int defaultValue)
Get an optional int value associated with a key, or the default if there
is no such key or if the value is not a number.
|
JSONArray |
JSONObject.optJSONArray(String key)
Get an optional JSONArray associated with a key.
|
JSONObject |
JSONObject.optJSONObject(String key)
Get an optional JSONObject associated with a key.
|
long |
JSONObject.optLong(String key)
Get an optional long value associated with a key, or zero if there is no
such key or if the value is not a number.
|
long |
JSONObject.optLong(String key,
long defaultValue)
Get an optional long value associated with a key, or the default if there
is no such key or if the value is not a number.
|
String |
JSONArray.optString(int index,
String defaultValue)
Get the optional string associated with an index.
|
String |
JSONObject.optString(String key)
Get an optional string associated with a key.
|
String |
JSONObject.optString(String key,
String defaultValue)
Get an optional string associated with a key.
|
JSONObject |
JSONObject.put(String key,
boolean value)
Put a key/boolean pair in the JSONObject.
|
JSONObject |
JSONObject.put(String key,
Collection<?> value)
Put a key/value pair in the JSONObject, where the value will be a
JSONArray which is produced from a Collection.
|
JSONObject |
JSONObject.put(String key,
double value)
Put a key/double pair in the JSONObject.
|
JSONObject |
JSONObject.put(String key,
int value)
Put a key/int pair in the JSONObject.
|
JSONObject |
JSONObject.put(String key,
long value)
Put a key/long pair in the JSONObject.
|
JSONObject |
JSONObject.put(String key,
Map<?,?> value)
Put a key/value pair in the JSONObject, where the value will be a
JSONObject which is produced from a Map.
|
JSONObject |
JSONObject.put(String key,
Object value)
Put a key/value pair in the JSONObject.
|
JSONObject |
JSONObject.putOnce(String key,
Object value)
Put a key/value pair in the JSONObject, but only if the key and the value
are both non-null, and only if there is not already a member with that
name.
|
JSONObject |
JSONObject.putOpt(String key,
Object value)
Put a key/value pair in the JSONObject, but only if the key and the value
are both non-null.
|
static String |
JSONObject.quote(String string)
Produce a string in double quotes with backslash sequences in all the
right places.
|
static Writer |
JSONObject.quote(String string,
Writer w) |
Object |
JSONObject.remove(String key)
Remove a name and its value, if present.
|
static Object |
JSONObject.stringToValue(String string)
Try to convert a string into a number, boolean, or null.
|
JSONException |
JSONTokener.syntaxError(String message)
Make a JSONException to signal a syntax error.
|
JSONException |
JSONTokener.syntaxError(String message,
Throwable causedBy)
Make a JSONException to signal a syntax error.
|
Constructor and Description |
---|
JSONArray(String source)
Construct a JSONArray from a source JSON text.
|
JSONException(String message)
Constructs a JSONException with an explanatory message.
|
JSONException(String message,
Throwable cause)
Constructs a JSONException with an explanatory message and cause.
|
JSONObject(JSONObject jo,
String[] names)
Construct a JSONObject from a subset of another JSONObject.
|
JSONObject(String source)
Construct a JSONObject from a source JSON text string.
|
JSONTokener(String s)
Construct a JSONTokener from a string.
|
Modifier and Type | Method and Description |
---|---|
String |
Logger.getName()
Returns the name of this logger.
|
Modifier and Type | Method and Description |
---|---|
static void |
Logger.config(String componentName,
String message)
Logs a message with severity level CONFIG.
|
static void |
Logger.info(String componentName,
String message)
Logs a message with severity level INFO.
|
void |
Logger.log(String component,
int level,
String message) |
void |
Logger.log(String component,
int level,
String message,
Object param) |
void |
Logger.logp(String component,
int level,
String message,
Object[] params) |
void |
StreamHandler.publish(String component,
String level,
String message,
Object[] params) |
void |
Logger.setName(String subSystem) |
static void |
Logger.severe(String componentName,
String message)
Logs a message with severity level SEVERE, indicating a serious failure that
prevents normal program execution.
|
static void |
Logger.warning(String componentName,
String message)
Logs a message with severity level WARNING, indicating a potential problem
that does not prevent normal program execution.
|
Modifier and Type | Method and Description |
---|---|
byte[][] |
TiDotMatrix.convert(String text)
Convert text string to dot matrix array
|