|
SunSPOT API V3.0 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InputStream | |
---|---|
com.sun.spot.flashmanagement | Low level access to chunks of flash memory. |
com.sun.spot.io.j2me.memory | Support for the "memory" GCF protocol. |
com.sun.spot.io.j2me.radiostream | Support for the 'radiostream' GCF Protocol. |
com.sun.spot.io.j2me.socket | Support for the "socket" GCF protocol. |
com.sun.spot.peripheral | Access to the hardware peripherals built in to the Sun SPOT main board. |
com.sun.spot.util | Utility classes. |
com.sun.squawk.io | Provides classes for input and output through data streams. |
com.sun.squawk.io.j2me.edemoserial | The serial protocol supports read/write access to the usart module on the Atmega88 for spot applications. |
com.sun.squawk.io.j2me.memory | The memory protocol supports direct read-only access to the Sun SPOT's RAM. |
com.sun.squawk.io.j2me.radiostream | The radiostream protocol supports streaming between two Sun SPOTs via the radio. |
com.sun.squawk.io.j2me.remoteprint | Provides the Protocol class to implement a "remoteprint:" connection using the J2ME Generic Connection Framework (GCF). |
com.sun.squawk.io.j2me.serial | The serial protocol supports read/write access to the USB channel to host applications. |
com.sun.squawk.io.j2me.socket | The socket protocol supports read/write access to an arbitrary socket on a host computer. |
com.sun.squawk.security.verifier | Provides classes for basic signing of binary data. |
com.sun.squawk.util | Provides classes for basic utilities sometimes jound in JSE. |
java.io | Provides classes for input and output through data streams. |
java.lang | Provides classes that are fundamental to the Java programming language. |
javax.microedition.io | Classes for the Generic Connection framework. |
Uses of InputStream in com.sun.spot.flashmanagement |
---|
Subclasses of InputStream in com.sun.spot.flashmanagement | |
---|---|
class |
FlashFileInputStream
FlashFileInputStream represents an input stream over some flash memory. |
Uses of InputStream in com.sun.spot.io.j2me.memory |
---|
Subclasses of InputStream in com.sun.spot.io.j2me.memory | |
---|---|
class |
MemoryInputStream
An InputStream that streams over the device memory. |
Uses of InputStream in com.sun.spot.io.j2me.radiostream |
---|
Subclasses of InputStream in com.sun.spot.io.j2me.radiostream | |
---|---|
class |
RadioInputStream
Helper class for "radiostream:" connections. |
Uses of InputStream in com.sun.spot.io.j2me.socket |
---|
Subclasses of InputStream in com.sun.spot.io.j2me.socket | |
---|---|
class |
SocketProtocolInputStream
Socket specific InputSteam. |
Constructors in com.sun.spot.io.j2me.socket with parameters of type InputStream | |
---|---|
SocketProtocolInputStream(InputStream in)
Create the input stream from another InputStream. |
Uses of InputStream in com.sun.spot.peripheral |
---|
Subclasses of InputStream in com.sun.spot.peripheral | |
---|---|
class |
BoundedInputStream
Wraps a parent InputStream with an input stream on the assumptions
that the first four bytes of the parent's content are a Java int which tells us
how many more valid bytes remain in the parent. |
Constructors in com.sun.spot.peripheral with parameters of type InputStream | |
---|---|
BoundedInputStream(InputStream in)
Construct an instance based on the supplied parent InputStream . |
Uses of InputStream in com.sun.spot.util |
---|
Methods in com.sun.spot.util with parameters of type InputStream | |
---|---|
static short |
CRC.crc(InputStream stream,
int flashedByteCount)
Return the CRC value of the specified number of bytes from an InputStream. |
void |
Properties.load(InputStream inStream)
Reads a property list (key and element pairs) from the input stream. |
Uses of InputStream in com.sun.squawk.io |
---|
Methods in com.sun.squawk.io that return InputStream | |
---|---|
InputStream |
ConnectionBase.openInputStream()
Open and return a data input stream for a connection. |
Uses of InputStream in com.sun.squawk.io.j2me.edemoserial |
---|
Methods in com.sun.squawk.io.j2me.edemoserial that return InputStream | |
---|---|
InputStream |
Protocol.openInputStream()
|
Uses of InputStream in com.sun.squawk.io.j2me.memory |
---|
Methods in com.sun.squawk.io.j2me.memory that return InputStream | |
---|---|
InputStream |
Protocol.openInputStream()
Open and return an input stream for a connection. |
Uses of InputStream in com.sun.squawk.io.j2me.radiostream |
---|
Methods in com.sun.squawk.io.j2me.radiostream that return InputStream | |
---|---|
InputStream |
Protocol.openInputStream()
|
Uses of InputStream in com.sun.squawk.io.j2me.remoteprint |
---|
Methods in com.sun.squawk.io.j2me.remoteprint that return InputStream | |
---|---|
InputStream |
Protocol.openInputStream()
Open an InputStream for this connection. |
Uses of InputStream in com.sun.squawk.io.j2me.serial |
---|
Methods in com.sun.squawk.io.j2me.serial that return InputStream | |
---|---|
InputStream |
Protocol.openInputStream()
|
Uses of InputStream in com.sun.squawk.io.j2me.socket |
---|
Methods in com.sun.squawk.io.j2me.socket that return InputStream | |
---|---|
InputStream |
Protocol.openInputStream()
Returns an input stream for this socket. |
Uses of InputStream in com.sun.squawk.security.verifier |
---|
Methods in com.sun.squawk.security.verifier with parameters of type InputStream | |
---|---|
static void |
SignatureVerifier.verifySuite(InputStream suiteIn)
Verifies a suite in flash memory. |
static void |
SignatureVerifier.verifySuite(InputStream suiteIn,
boolean useNativeSHA)
Verifies a suite in flash memory using either the java Signature or a native read from flash and sha1 code. |
Uses of InputStream in com.sun.squawk.util |
---|
Subclasses of InputStream in com.sun.squawk.util | |
---|---|
class |
ByteArrayInputStreamWithSetBytes
An extention of ByteArrayInputStream that allows the byte array buffer to be modified, using the
ByteArrayInputStreamWithSetBytes.setBytes(byte[], int, int) method. |
Uses of InputStream in java.io |
---|
Subclasses of InputStream in java.io | |
---|---|
class |
ByteArrayInputStream
A ByteArrayInputStream contains
an internal buffer that contains bytes that
may be read from the stream. |
class |
DataInputStream
A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way. |
Fields in java.io declared as InputStream | |
---|---|
protected InputStream |
DataInputStream.in
The input stream. |
Constructors in java.io with parameters of type InputStream | |
---|---|
DataInputStream(InputStream in)
Creates a DataInputStream
and saves its argument, the input stream
in , for later use. |
|
InputStreamReader(InputStream is)
Create an InputStreamReader that uses the default character encoding. |
|
InputStreamReader(InputStream is,
String enc)
Create an InputStreamReader that uses the named character encoding. |
Uses of InputStream in java.lang |
---|
Methods in java.lang that return InputStream | |
---|---|
InputStream |
Class.getResourceAsStream(String name)
Finds a resource with a given name. |
Uses of InputStream in javax.microedition.io |
---|
Methods in javax.microedition.io that return InputStream | |
---|---|
InputStream |
InputConnection.openInputStream()
Open and return an input stream for a connection. |
static InputStream |
Connector.openInputStream(String name)
Create and open a connection input stream. |
|
SunSPOT API V3.0 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |