Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 

B

back() - Method in class tijos.framework.util.json.JSONTokener
Back up one character.
Base64 - Class in tijos.framework.util.base64
Base64 encoding and decoding.
BC - Static variable in class java.util.GregorianCalendar
Constant representing the era BC (Before Christ).
before(Object) - Method in class java.util.Calendar
Compares the given calendar with this.
before(Date) - Method in class java.util.Date
Tests if this date is before the specified date.
BigBitConverter - Class in tijos.framework.util
Converts base data types to an array of bytes in Big Endian, and an array of bytes to base data types.
BigBitConverter() - Constructor for class tijos.framework.util.BigBitConverter
 
binarySearch(byte[], byte) - Static method in class java.util.Arrays
Perform a binary search of a byte array for a key.
binarySearch(byte[], int, int, byte) - Static method in class java.util.Arrays
Perform a binary search of a range of a byte array for a key.
binarySearch(char[], char) - Static method in class java.util.Arrays
Perform a binary search of a char array for a key.
binarySearch(char[], int, int, char) - Static method in class java.util.Arrays
Perform a binary search of a range of a char array for a key.
binarySearch(short[], short) - Static method in class java.util.Arrays
Perform a binary search of a short array for a key.
binarySearch(short[], int, int, short) - Static method in class java.util.Arrays
Perform a binary search of a range of a short array for a key.
binarySearch(int[], int) - Static method in class java.util.Arrays
Perform a binary search of an int array for a key.
binarySearch(int[], int, int, int) - Static method in class java.util.Arrays
Perform a binary search of a range of an integer array for a key.
binarySearch(long[], long) - Static method in class java.util.Arrays
Perform a binary search of a long array for a key.
binarySearch(long[], int, int, long) - Static method in class java.util.Arrays
Perform a binary search of a range of a long array for a key.
binarySearch(float[], float) - Static method in class java.util.Arrays
Perform a binary search of a float array for a key.
binarySearch(float[], int, int, float) - Static method in class java.util.Arrays
Perform a binary search of a range of a float array for a key.
binarySearch(double[], double) - Static method in class java.util.Arrays
Perform a binary search of a double array for a key.
binarySearch(double[], int, int, double) - Static method in class java.util.Arrays
Perform a binary search of a range of a double array for a key.
binarySearch(Object[], Object) - Static method in class java.util.Arrays
Perform a binary search of an Object array for a key, using the natural ordering of the elements.
binarySearch(Object[], int, int, Object) - Static method in class java.util.Arrays
Perform a binary search of a range of an Object array for a key.
binarySearch(T[], T, Comparator<? super T>) - Static method in class java.util.Arrays
Perform a binary search of an Object array for a key, using a supplied Comparator.
binarySearch(T[], int, int, T, Comparator<? super T>) - Static method in class java.util.Arrays
Perform a binary search of a range of an Object array for a key using a Comparator.
binarySearch(List<? extends Comparable<? super T>>, T) - Static method in class java.util.Collections
Perform a binary search of a List for a key, using the natural ordering of the elements.
binarySearch(List<? extends T>, T, Comparator<? super T>) - Static method in class java.util.Collections
Perform a binary search of a List for a key, using a supplied Comparator.
bind(SocketAddress) - Method in class java.net.DatagramSocket
Binds the socket to the given socket address.
bind(SocketAddress) - Method in class java.net.ServerSocket
Binds the server socket to a specified socket address
bind(SocketAddress, int) - Method in class java.net.ServerSocket
Binds the server socket to a specified socket address
bind(SocketAddress) - Method in class java.net.Socket
Binds the socket to the given local address/port
bitCount(int) - Static method in class java.lang.Integer
 
bitCount(long) - Static method in class java.lang.Long
 
BitSet - Class in java.util
This class can be thought of in two ways.
BitSet() - Constructor for class java.util.BitSet
Create a new empty bit set.
BitSet(int) - Constructor for class java.util.BitSet
Create a new empty bit set, with a given size.
Boolean - Class in java.lang
Wrapper class for booleans.
Boolean(boolean) - Constructor for class java.lang.Boolean
 
Boolean(String) - Constructor for class java.lang.Boolean
 
booleanValue() - Method in class java.lang.Boolean
 
BUFF_READ - Static variable in class tijos.framework.devicecenter.TiUART
Read buffer
BUFF_WR - Static variable in class tijos.framework.devicecenter.TiUART
Write and read buffer
BUFF_WRITE - Static variable in class tijos.framework.devicecenter.TiUART
Write buffer
BufferedInputStream - Class in java.io
This subclass of FilterInputStream buffers input from an underlying implementation to provide a possibly more efficient read mechanism.
BufferedInputStream(InputStream) - Constructor for class java.io.BufferedInputStream
This method initializes a new BufferedInputStream that will read from the specified subordinate stream with a default buffer size of 2048 bytes
BufferedInputStream(InputStream, int) - Constructor for class java.io.BufferedInputStream
This method initializes a new BufferedInputStream that will read from the specified subordinate stream with a buffer size that is specified by the caller.
BufferedOutputStream - Class in java.io
This class accumulates bytes written in a buffer instead of immediately writing the data to the underlying output sink.
BufferedOutputStream(OutputStream) - Constructor for class java.io.BufferedOutputStream
This method initializes a new BufferedOutputStream instance that will write to the specified subordinate OutputStream and which will use a default buffer size of 512 bytes.
BufferedOutputStream(OutputStream, int) - Constructor for class java.io.BufferedOutputStream
This method initializes a new BufferedOutputStream instance that will write to the specified subordinate OutputStream and which will use the specified buffer size
BufferedReader - Class in java.io
Reads text from a character-input stream, buffering characters so as to provide for the efficient reading of characters, arrays, and lines.
BufferedReader(Reader, int) - Constructor for class java.io.BufferedReader
Creates a buffering character-input stream that uses an input buffer of the specified size.
BufferedReader(Reader) - Constructor for class java.io.BufferedReader
Creates a buffering character-input stream that uses a default-sized input buffer.
BufferedWriter - Class in java.io
Writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.
BufferedWriter(Writer) - Constructor for class java.io.BufferedWriter
Creates a buffered character-output stream that uses a default-sized output buffer.
BufferedWriter(Writer, int) - Constructor for class java.io.BufferedWriter
Creates a new buffered character-output stream that uses an output buffer of the given size.
Byte - Class in java.lang
Wrapper class for bytes.
Byte(byte) - Constructor for class java.lang.Byte
 
Byte(String) - Constructor for class java.lang.Byte
 
ByteArrayInputStream - Class in java.io
A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream.
ByteArrayInputStream(byte[]) - Constructor for class java.io.ByteArrayInputStream
Creates a ByteArrayInputStream so that it uses buf as its buffer array.
ByteArrayInputStream(byte[], int, int) - Constructor for class java.io.ByteArrayInputStream
Creates ByteArrayInputStream that uses buf as its buffer array.
ByteArrayOutputStream - Class in java.io
This class allows data to be written to a byte array buffer and and then retrieved by an application.
ByteArrayOutputStream() - Constructor for class java.io.ByteArrayOutputStream
This method initializes a new ByteArrayOutputStream with the default buffer size of 32 bytes.
ByteArrayOutputStream(int) - Constructor for class java.io.ByteArrayOutputStream
This method initializes a new ByteArrayOutputStream with a specified initial buffer size.
bytesTransferred - Variable in exception java.io.InterruptedIOException
The number of bytes read/written prior to the interruption.
byteValue() - Method in class java.lang.Byte
 
byteValue() - Method in class java.lang.Double
 
byteValue() - Method in class java.lang.Float
 
byteValue() - Method in class java.lang.Integer
 
byteValue() - Method in class java.lang.Long
 
byteValue() - Method in class java.lang.Number
Return the byte value of this Number.
byteValue() - Method in class java.lang.Short
 
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
Skip navigation links