Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A B C D E F L M N O P R S W

A

ALPHABET - Static variable in class org.ematgine.utils.misc.base64.Base64
The 64 valid Base64 values.

B

BAD_ENCODING - Static variable in class org.ematgine.utils.misc.base64.Base64
Description of the Field
Base64 - class org.ematgine.utils.misc.base64.Base64.
Description of the Class
Base64() - Constructor for class org.ematgine.utils.misc.base64.Base64
Defeats instantiation.
Base64.InputStream - class org.ematgine.utils.misc.base64.Base64.InputStream.
A Base64#InputStream will read data from another java.io.InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.InputStream(InputStream) - Constructor for class org.ematgine.utils.misc.base64.Base64.InputStream
Constructs a Base64#InputStream in DECODE mode.
Base64.InputStream(InputStream, boolean) - Constructor for class org.ematgine.utils.misc.base64.Base64.InputStream
Constructs a Base64#InputStream in either ENCODE or DECODE mode.
Base64.InputStream(InputStream, boolean, boolean) - Constructor for class org.ematgine.utils.misc.base64.Base64.InputStream
Constructs a Base64#InputStream in either ENCODE or DECODE mode.
Base64.OutputStream - class org.ematgine.utils.misc.base64.Base64.OutputStream.
A Base64#OutputStream will write data to another java.io.OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.OutputStream(OutputStream) - Constructor for class org.ematgine.utils.misc.base64.Base64.OutputStream
Constructs a Base64#OutputStream in ENCODE mode.
Base64.OutputStream(OutputStream, boolean) - Constructor for class org.ematgine.utils.misc.base64.Base64.OutputStream
Constructs a Base64#OutputStream in either ENCODE or DECODE mode.
Base64.OutputStream(OutputStream, boolean, boolean) - Constructor for class org.ematgine.utils.misc.base64.Base64.OutputStream
Constructs a Base64#OutputStream in either ENCODE or DECODE mode.
breakLines - Variable in class org.ematgine.utils.misc.base64.Base64.InputStream
Description of the Field
breakLines - Variable in class org.ematgine.utils.misc.base64.Base64.OutputStream
Description of the Field
buffer - Variable in class org.ematgine.utils.misc.base64.Base64.InputStream
Description of the Field
buffer - Variable in class org.ematgine.utils.misc.base64.Base64.OutputStream
Description of the Field
bufferLength - Variable in class org.ematgine.utils.misc.base64.Base64.InputStream
Description of the Field
bufferLength - Variable in class org.ematgine.utils.misc.base64.Base64.OutputStream
Description of the Field

C

close() - Method in class org.ematgine.utils.misc.base64.Base64.OutputStream
Flushes and closes (I think, in the superclass) the stream.

D

DECODABET - Static variable in class org.ematgine.utils.misc.base64.Base64
Translates a Base64 value to either its 6-bit reconstruction value or a negative number indicating some other meaning.
DECODE - Static variable in class org.ematgine.utils.misc.base64.Base64
Specify decoding (value is false ).
decode(String) - Static method in class org.ematgine.utils.misc.base64.Base64
Decodes data from Base64 notation.
decode(byte[], int, int) - Static method in class org.ematgine.utils.misc.base64.Base64
Decodes Base64 content in byte array format and returns the decoded byte array.
decode4to3(byte[]) - Static method in class org.ematgine.utils.misc.base64.Base64
Decodes the first four bytes of array fourBytes and returns an array up to three bytes long with the decoded values.
decode4to3(byte[], int, byte[], int) - Static method in class org.ematgine.utils.misc.base64.Base64
Decodes four bytes from array source and writes the resulting bytes (up to three of them) to destination .
decodeToObject(String) - Static method in class org.ematgine.utils.misc.base64.Base64
Attempts to decode Base64 data and deserialize a Java Object within.
decodeToString(String) - Static method in class org.ematgine.utils.misc.base64.Base64
Decodes data from Base64 notation and returns it as a string.

E

ENCODE - Static variable in class org.ematgine.utils.misc.base64.Base64
Specify encoding (value is true ).
EQUALS_SIGN - Static variable in class org.ematgine.utils.misc.base64.Base64
The equals sign (=) as a byte.
EQUALS_SIGN_ENC - Static variable in class org.ematgine.utils.misc.base64.Base64
Description of the Field
encode - Variable in class org.ematgine.utils.misc.base64.Base64.InputStream
Description of the Field
encode - Variable in class org.ematgine.utils.misc.base64.Base64.OutputStream
Description of the Field
encode(byte[]) - Static method in class org.ematgine.utils.misc.base64.Base64
base 64 encode of bytes
encode3to4(byte[]) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes the first three bytes of array threeBytes and returns a four-byte array in Base64 notation.
encode3to4(byte[], int) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes up to the first three bytes of array threeBytes and returns a four-byte array in Base64 notation.
encode3to4(byte[], int, int, byte[], int) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes up to three bytes of the array source and writes the resulting four Base64 bytes to destination .
encodeBytes(byte[]) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], boolean) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int, boolean) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes a byte array into Base64 notation.
encodeObject(Serializable) - Static method in class org.ematgine.utils.misc.base64.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeObject(Serializable, boolean) - Static method in class org.ematgine.utils.misc.base64.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeString(String) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes a string in Base64 notation with line breaks after every 75 Base64 characters.
encodeString(String, boolean) - Static method in class org.ematgine.utils.misc.base64.Base64
Encodes a string in Base64 notation with line breaks after every 75 Base64 characters.

F

flush() - Method in class org.ematgine.utils.misc.base64.Base64.OutputStream
Appropriately pads Base64 notation when encoding or throws an exception if Base64 input is not properly padded when decoding.

L

lineLength - Variable in class org.ematgine.utils.misc.base64.Base64.InputStream
Description of the Field
lineLength - Variable in class org.ematgine.utils.misc.base64.Base64.OutputStream
Description of the Field

M

MAX_LINE_LENGTH - Static variable in class org.ematgine.utils.misc.base64.Base64
Maximum line length (76) of Base64 output.

N

NEW_LINE - Static variable in class org.ematgine.utils.misc.base64.Base64
The new line character (\n) as a byte.
numSigBytes - Variable in class org.ematgine.utils.misc.base64.Base64.InputStream
Description of the Field

O

old_main(String[]) - Static method in class org.ematgine.utils.misc.base64.Base64
Testing.
org.ematgine.utils.misc.base64 - package org.ematgine.utils.misc.base64
 

P

position - Variable in class org.ematgine.utils.misc.base64.Base64.InputStream
Description of the Field
position - Variable in class org.ematgine.utils.misc.base64.Base64.OutputStream
Description of the Field

R

read() - Method in class org.ematgine.utils.misc.base64.Base64.InputStream
Reads enough of the input stream to convert to/from Base64 and returns the next byte.
read(byte[], int, int) - Method in class org.ematgine.utils.misc.base64.Base64.InputStream
Calls Base64.InputStream.read() 55 repeatedly until the end of stream is reached or len bytes are read.

S

special_encode(byte[]) - Static method in class org.ematgine.utils.misc.base64.Base64
Description of the Method

W

WHITE_SPACE_ENC - Static variable in class org.ematgine.utils.misc.base64.Base64
Description of the Field
write(int) - Method in class org.ematgine.utils.misc.base64.Base64.OutputStream
Writes the byte to the output stream after converting to/from Base64 notation.
write(byte[], int, int) - Method in class org.ematgine.utils.misc.base64.Base64.OutputStream
Calls write(int) 55 repeatedly until len bytes are written.

A B C D E F L M N O P R S W