Foundation 1.1.2
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

BAD_EXTENSIONS - Static variable in class javax.microedition.pki.CertificateException
Indicates a certificate has unrecognized critical extensions.
BASIC_LATIN - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
BC - Static variable in class java.util.GregorianCalendar
Value of the ERA field indicating the period before the common era (before Christ), also known as BCE.
BENGALI - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
BEST_COMPRESSION - Static variable in class java.util.zip.Deflater
Compression level for best compression.
BEST_SPEED - Static variable in class java.util.zip.Deflater
Compression level for fastest compression.
BLOCK_ELEMENTS - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
BOPOMOFO - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
BOPOMOFO_EXTENDED - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
BOX_DRAWING - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
BRAILLE_PATTERNS - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
BROKEN_CHAIN - Static variable in class javax.microedition.pki.CertificateException
Indicates a certificate in a chain was not issued by the next authority in the chain.
BasicPermission - class java.security.BasicPermission.
The BasicPermission class extends the Permission class, and can be used as the base class for permissions that want to follow the same naming convention as BasicPermission.
BasicPermission(String) - Constructor for class java.security.BasicPermission
Creates a new BasicPermission with the specified name.
BasicPermission(String, String) - Constructor for class java.security.BasicPermission
Creates a new BasicPermission object with the specified name.
BigDecimal - class java.math.BigDecimal.
Immutable, arbitrary-precision signed decimal numbers.
BigDecimal(String) - Constructor for class java.math.BigDecimal
Translates the String representation of a BigDecimal into a BigDecimal.
BigDecimal(double) - Constructor for class java.math.BigDecimal
Translates a double into a BigDecimal.
BigDecimal(BigInteger) - Constructor for class java.math.BigDecimal
Translates a BigInteger into a BigDecimal.
BigDecimal(BigInteger, int) - Constructor for class java.math.BigDecimal
Translates a BigInteger unscaled value and an int scale into a BigDecimal.
BigInteger - class java.math.BigInteger.
Immutable arbitrary-precision integers.
BigInteger(byte[]) - Constructor for class java.math.BigInteger
Translates a byte array containing the two's-complement binary representation of a BigInteger into a BigInteger.
BigInteger(int, byte[]) - Constructor for class java.math.BigInteger
Translates the sign-magnitude representation of a BigInteger into a BigInteger.
BigInteger(String, int) - Constructor for class java.math.BigInteger
Translates the String representation of a BigInteger in the specified radix into a BigInteger.
BigInteger(String) - Constructor for class java.math.BigInteger
Translates the decimal String representation of a BigInteger into a BigInteger.
BigInteger(int, Random) - Constructor for class java.math.BigInteger
Constructs a randomly generated BigInteger, uniformly distributed over the range 0 to (2numBits - 1), inclusive.
BigInteger(int, int, Random) - Constructor for class java.math.BigInteger
Constructs a randomly generated positive BigInteger that is probably prime, with the specified bitLength.
BindException - exception java.net.BindException.
Signals that an error occurred while attempting to bind a socket to a local address and port.
BindException(String) - Constructor for class java.net.BindException
Constructs a new BindException with the specified detail message as to why the bind error occurred.
BindException() - Constructor for class java.net.BindException
Construct a new BindException with no detailed message.
BitSet - class java.util.BitSet.
This class implements a vector of bits that grows as needed.
BitSet() - Constructor for class java.util.BitSet
Creates a new bit set.
BitSet(int) - Constructor for class java.util.BitSet
Creates a bit set whose initial size is large enough to explicitly represent bits with indices in the range 0 through nbits-1.
Boolean - class java.lang.Boolean.
The Boolean class wraps a value of the primitive type boolean in an object.
Boolean(boolean) - Constructor for class java.lang.Boolean
Allocates a Boolean object representing the value argument.
Boolean(String) - Constructor for class java.lang.Boolean
Allocates a Boolean object representing the value true if the string argument is not null and is equal, ignoring case, to the string "true".
BreakIterator - class java.text.BreakIterator.
The BreakIterator class implements methods for finding the location of boundaries in text.
BreakIterator() - Constructor for class java.text.BreakIterator
Constructor.
BufferedInputStream - class java.io.BufferedInputStream.
A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the input and to support the mark and reset methods.
BufferedInputStream(InputStream) - Constructor for class java.io.BufferedInputStream
Creates a BufferedInputStream and saves its argument, the input stream in, for later use.
BufferedInputStream(InputStream, int) - Constructor for class java.io.BufferedInputStream
Creates a BufferedInputStream with the specified buffer size, and saves its argument, the input stream in, for later use.
BufferedOutputStream - class java.io.BufferedOutputStream.
The class implements a buffered output stream.
BufferedOutputStream(OutputStream) - Constructor for class java.io.BufferedOutputStream
Creates a new buffered output stream to write data to the specified underlying output stream with a default 512-byte buffer size.
BufferedOutputStream(OutputStream, int) - Constructor for class java.io.BufferedOutputStream
Creates a new buffered output stream to write data to the specified underlying output stream with the specified buffer size.
BufferedReader - class java.io.BufferedReader.
Read 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
Create a buffering character-input stream that uses an input buffer of the specified size.
BufferedReader(Reader) - Constructor for class java.io.BufferedReader
Create a buffering character-input stream that uses a default-sized input buffer.
BufferedWriter - class java.io.BufferedWriter.
Write 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
Create a buffered character-output stream that uses a default-sized output buffer.
BufferedWriter(Writer, int) - Constructor for class java.io.BufferedWriter
Create a new buffered character-output stream that uses an output buffer of the given size.
Byte - class java.lang.Byte.
The Byte class wraps a value of primitive type byte in an object.
Byte(byte) - Constructor for class java.lang.Byte
Constructs a newly allocated Byte object that represents the specified byte value.
Byte(String) - Constructor for class java.lang.Byte
Constructs a newly allocated Byte object that represents the byte value indicated by the String parameter.
ByteArrayInputStream - class java.io.ByteArrayInputStream.
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 java.io.ByteArrayOutputStream.
This class implements an output stream in which the data is written into a byte array.
ByteArrayOutputStream() - Constructor for class java.io.ByteArrayOutputStream
Creates a new byte array output stream.
ByteArrayOutputStream(int) - Constructor for class java.io.ByteArrayOutputStream
Creates a new byte array output stream, with a buffer capacity of the specified size, in bytes.
baseWireHandle - Static variable in interface java.io.ObjectStreamConstants
First wire handle to be assigned.
before(Object) - Method in class java.util.Calendar
Compares the time field records.
before(Date) - Method in class java.util.Date
Tests if this date is before the specified date.
binarySearch(long[], long) - Static method in class java.util.Arrays
Searches the specified array of longs for the specified value using the binary search algorithm.
binarySearch(int[], int) - Static method in class java.util.Arrays
Searches the specified array of ints for the specified value using the binary search algorithm.
binarySearch(short[], short) - Static method in class java.util.Arrays
Searches the specified array of shorts for the specified value using the binary search algorithm.
binarySearch(char[], char) - Static method in class java.util.Arrays
Searches the specified array of chars for the specified value using the binary search algorithm.
binarySearch(byte[], byte) - Static method in class java.util.Arrays
Searches the specified array of bytes for the specified value using the binary search algorithm.
binarySearch(double[], double) - Static method in class java.util.Arrays
Searches the specified array of doubles for the specified value using the binary search algorithm.
binarySearch(float[], float) - Static method in class java.util.Arrays
Searches the specified array of floats for the specified value using the binary search algorithm.
binarySearch(Object[], Object) - Static method in class java.util.Arrays
Searches the specified array for the specified object using the binary search algorithm.
binarySearch(Object[], Object, Comparator) - Static method in class java.util.Arrays
Searches the specified array for the specified object using the binary search algorithm.
binarySearch(List, Object) - Static method in class java.util.Collections
Searches the specified list for the specified object using the binary search algorithm.
binarySearch(List, Object, Comparator) - Static method in class java.util.Collections
Searches the specified list for the specified object using the binary search algorithm.
bind(SocketAddress) - Method in class java.net.DatagramSocket
Binds this DatagramSocket to a specific address & port.
bind(int, InetAddress) - Method in class java.net.DatagramSocketImpl
Binds a datagram socket to a local port and address.
bind(SocketAddress) - Method in class java.net.ServerSocket
Binds the ServerSocket to a specific address (IP address and port number).
bind(SocketAddress, int) - Method in class java.net.ServerSocket
Binds the ServerSocket to a specific address (IP address and port number).
bind(SocketAddress) - Method in class java.net.Socket
Binds the socket to a local address.
bind(InetAddress, int) - Method in class java.net.SocketImpl
Binds this socket to the specified port number on the specified host.
bitCount() - Method in class java.math.BigInteger
Returns the number of bits in the two's complement representation of this BigInteger that differ from its sign bit.
bitLength() - Method in class java.math.BigInteger
Returns the number of bits in the minimal two's-complement representation of this BigInteger, excluding a sign bit.
booleanValue() - Method in class java.lang.Boolean
Returns the value of this Boolean object as a boolean primitive.
buf - Variable in class java.io.BufferedInputStream
The internal buffer array where the data is stored.
buf - Variable in class java.io.BufferedOutputStream
The internal buffer where data is stored.
buf - Variable in class java.io.ByteArrayInputStream
An array of bytes that was provided by the creator of the stream.
buf - Variable in class java.io.ByteArrayOutputStream
The buffer where data is stored.
buf - Variable in class java.io.CharArrayReader
The character buffer.
buf - Variable in class java.io.CharArrayWriter
The buffer where data is stored.
buf - Variable in class java.io.PushbackInputStream
The pushback buffer.
buf - Variable in class java.util.zip.DeflaterOutputStream
Output buffer for writing compressed data.
buf - Variable in class java.util.zip.InflaterInputStream
Input buffer for decompression.
buffer - Variable in class java.io.PipedInputStream
The circular buffer into which incoming data is placed.
byteValue() - Method in class java.lang.Byte
Returns the value of this Byte as a byte.
byteValue() - Method in class java.lang.Double
Returns the value of this Double as a byte (by casting to a byte).
byteValue() - Method in class java.lang.Float
Returns the value of this Float as a byte (by casting to a byte).
byteValue() - Method in class java.lang.Integer
Returns the value of this Integer as a byte.
byteValue() - Method in class java.lang.Long
Returns the value of this Long as a byte.
byteValue() - Method in class java.lang.Number
Returns the value of the specified number as a byte.
byteValue() - Method in class java.lang.Short
Returns the value of this Short as a byte.
bytesTransferred - Variable in class java.io.InterruptedIOException
Reports how many bytes had been transferred as part of the I/O operation before it was interrupted.

Foundation 1.1.2
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
Copyright 2006 Sun Microsystems, Inc. All Rights Reserved. Use of this specification is subject to license terms.