| Package | Description |
|---|---|
| com.cinterion.io | |
| ej.ecom.io | |
| ej.storage | |
| ej.wadapps.application | |
| java.io | |
| java.lang | |
| java.security | |
| java.security.cert | |
| java.util | |
| javax.security.auth.x500 |
| Modifier and Type | Method and Description |
|---|---|
InputStream |
ATCommand.getDataInputStream()
This function returns the input stream for data connections.
|
| Modifier and Type | Method and Description |
|---|---|
InputStream |
CommConnection.openInputStream()
Returns an
InputStream which implements the BitsInput interface. |
| Modifier and Type | Method and Description |
|---|---|
InputStream |
Storage.load(String id)
Loads the data stored with a specific ID or
null if there is none. |
| Modifier and Type | Method and Description |
|---|---|
Application |
ApplicationInstaller.install(InputStream stream)
Installs an application from an input stream.
|
Application |
ApplicationInstaller.install(InputStream stream,
org.eclipse.core.runtime.IProgressMonitor monitor)
Installs an application from an input stream.
|
| Modifier and Type | Class and Description |
|---|---|
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.
|
class |
FileInputStream
A
FileInputStream obtains input bytes from a file in a file system. |
class |
FilterInputStream
A
FilterInputStream contains some other input stream, which it uses as its basic
source of data, possibly transforming the data along the way or providing additional
functionality. |
| Constructor and Description |
|---|
DataInputStream(InputStream in)
Creates a DataInputStream that uses the specified underlying InputStream.
|
FilterInputStream(InputStream in)
Creates a
FilterInputStream by assigning the argument in to the field
this.in so as to remember it for later use. |
InputStreamReader(InputStream in)
Creates an InputStreamReader that uses the default charset.
|
InputStreamReader(InputStream in,
String charsetName)
Creates an InputStreamReader that uses the named charset.
|
| Modifier and Type | Method and Description |
|---|---|
InputStream |
Class.getResourceAsStream(String name)
Finds a resource with a given name.
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
KeyStoreSpi.engineLoad(InputStream stream,
char[] password)
Loads the keystore from the given input stream.
|
void |
KeyStore.load(InputStream stream,
char[] password)
Loads this KeyStore from the given input stream.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Certificate |
CertificateFactorySpi.engineGenerateCertificate(InputStream inStream)
Generates a certificate object and initializes it with the data read from the input stream
inStream. |
Certificate |
CertificateFactory.generateCertificate(InputStream inStream)
Generates a certificate object and initializes it with the data read from the input stream
inStream. |
| Modifier and Type | Method and Description |
|---|---|
void |
Properties.load(InputStream inStream)
Reads a property list (key and element pairs) from the input
byte stream.
|
| Constructor and Description |
|---|
X500Principal(InputStream is)
Creates an
X500Principal from an InputStream containing the distinguished name in ASN.1
DER encoded form. |