A B C D E F G H I M N O P R S T U V W

A

add(BigInt) - Method in class org.clazzes.optional.lang.BigInt
Add a to this and return the result.
addSeedMaterial(byte[]) - Method in class org.clazzes.optional.sec.DigestRandomGenerator
 
addSeedMaterial(long) - Method in class org.clazzes.optional.sec.DigestRandomGenerator
 
addSeedMaterial(byte[]) - Method in interface org.clazzes.optional.sec.SeededRandomGenerator
Add more seed material to the generator.
addSeedMaterial(long) - Method in interface org.clazzes.optional.sec.SeededRandomGenerator
Add more seed material to the generator.
AEADBlockCipher - Interface in org.clazzes.optional.sec
A block cipher mode that includes authenticated encryption with a streaming mode and optional associated data.
AESCipher - Class in org.clazzes.optional.sec
Implementation of AES base copied from bouncycastle's AESFastEngine.
AESCipher() - Constructor for class org.clazzes.optional.sec.AESCipher
default constructor - 128 bit block size.

B

BasicGCMMultiplier - Class in org.clazzes.optional.sec.gcm
 
BasicGCMMultiplier() - Constructor for class org.clazzes.optional.sec.gcm.BasicGCMMultiplier
 
bigEndianToInt(byte[], int) - Static method in class org.clazzes.optional.sec.Pack
 
BigInt - Class in org.clazzes.optional.lang
A variable length integer class.
BigInt(int, int[]) - Constructor for class org.clazzes.optional.lang.BigInt
Construct a string from an internal representation.
BigInt(int) - Constructor for class org.clazzes.optional.lang.BigInt
 
BigInt(long) - Constructor for class org.clazzes.optional.lang.BigInt
 
BigInt(int, byte[]) - Constructor for class org.clazzes.optional.lang.BigInt
Create a big integer from a MSB raw value.
BlockCipher - Interface in org.clazzes.optional.sec
An interface, which encapsulates symmetric ciphers like 3-DES or AES.

C

CBCCipher - Class in org.clazzes.optional.sec
CBC cipher mode for symmetric ciphers.
CBCCipher(BlockCipher) - Constructor for class org.clazzes.optional.sec.CBCCipher
Basic constructor.
CheckedInputStream - Class in org.clazzes.optional.util.zip
 
CheckedInputStream(InputStream, Checksum) - Constructor for class org.clazzes.optional.util.zip.CheckedInputStream
 
CheckedOutputStream - Class in org.clazzes.optional.util.zip
 
CheckedOutputStream(OutputStream, Checksum) - Constructor for class org.clazzes.optional.util.zip.CheckedOutputStream
 
Checksum - Interface in org.clazzes.optional.util.zip
Simple extension of Checksum.
clone(byte[]) - Static method in class org.clazzes.optional.sec.Pack
 
cloneState() - Method in interface org.clazzes.optional.sec.Digest
 
cloneState() - Method in class org.clazzes.optional.sec.SHA1Digest
 
cloneState() - Method in class org.clazzes.optional.sec.SHA256Digest
 
compareTo(BigInt) - Method in class org.clazzes.optional.lang.BigInt
Compare this number with a by taking signs into account.
compareTo(int) - Method in class org.clazzes.optional.lang.BigInt
Compare this number with a by taking signs into account.
constantTimeAreEqual(byte[], byte[]) - Static method in class org.clazzes.optional.sec.Pack
A constant time equals comparison - does not terminate early if test will fail.

D

DataCodeable - Interface in org.clazzes.optional.io
This interface is implemented by classes which may be serialized to a DataOutput instance and deserialized from a DataInput instance.
DataCodingHelper - Class in org.clazzes.optional.io
Static helper methods, which complement the functionality of DataInput and DataOutput.
DataCodingHelper() - Constructor for class org.clazzes.optional.io.DataCodingHelper
 
decode(InputStream, byte[]) - Static method in class org.clazzes.optional.sec.rsa.RSAPrivKey
Write the encrypted private key to an output stream.
decodeBigInt(DataInputStream, boolean) - Static method in class org.clazzes.optional.sec.rsa.RSAPrivKey
Decode an unsigned BigInt from a DataInputStream.
decrypt(byte[], int, byte[], byte[], int) - Method in class org.clazzes.optional.sec.rsa.OAEP
Prepare the given input data for RSA encryption.
decryptPlain(BigInt) - Method in class org.clazzes.optional.sec.rsa.RSACrtPrivKey
 
decryptPlain(BigInt) - Method in class org.clazzes.optional.sec.rsa.RSAPrivKey
Calculates the plain decrpyt operation x^privExp.
decryptRSA(byte[], RSAPrivKey, byte[], byte[], int) - Method in class org.clazzes.optional.sec.rsa.OAEP
Decrypt and unpad the given input data using RSA decryption.
Digest - Interface in org.clazzes.optional.sec
An interface, which encapsulates secure hash function like SHA-1 or SHA-256.
DIGEST_LENGTH - Static variable in class org.clazzes.optional.sec.SHA1Digest
 
DIGEST_LENGTH - Static variable in class org.clazzes.optional.sec.SHA256Digest
 
DigestRandomGenerator - Class in org.clazzes.optional.sec
Random generation based on the digest with counter.
DigestRandomGenerator(Digest) - Constructor for class org.clazzes.optional.sec.DigestRandomGenerator
 
doFinal(byte[], int) - Method in interface org.clazzes.optional.sec.AEADBlockCipher
Finish the operation either appending or verifying the MAC at the end of the data.
doFinal(byte[], int) - Method in interface org.clazzes.optional.sec.Digest
Retrieve the hash of all data added so far with Digest.update(byte[], int, int).
doFinal(byte[], int) - Method in class org.clazzes.optional.sec.GCMCipher
 
doFinal(byte[], int) - Method in class org.clazzes.optional.sec.HMac
 
doFinal(byte[], int) - Method in interface org.clazzes.optional.sec.Mac
Compute the final stage of the MAC writing the output to the out parameter.
doFinal(byte[], int) - Method in class org.clazzes.optional.sec.SHA1Digest
 
doFinal(byte[], int) - Method in class org.clazzes.optional.sec.SHA256Digest
 

E

encode(OutputStream, byte[], RandomGenerator) - Method in class org.clazzes.optional.sec.rsa.RSAPrivKey
Write the encrypted private key to an output stream.
encodeEncryptedParts(DataOutputStream) - Method in class org.clazzes.optional.sec.rsa.RSACrtPrivKey
 
encodeEncryptedParts(DataOutputStream) - Method in class org.clazzes.optional.sec.rsa.RSAPrivKey
Encode the encrypted parts.
encrypt(byte[], int, int, byte[], byte[]) - Method in class org.clazzes.optional.sec.rsa.OAEP
Prepare the given input data for RSA encryption.
encryptPlain(BigInt) - Method in class org.clazzes.optional.sec.rsa.RSAPubKey
Calculates the plain encrpyt operation x^pubExp.
encryptRSA(byte[], int, int, RSAPubKey, byte[]) - Method in class org.clazzes.optional.sec.rsa.OAEP
Pad an encrypt the given input data using RSA encryption.
equals(Object) - Method in class org.clazzes.optional.lang.BigInt
 

F

finish() - Method in class org.clazzes.optional.sec.GeneralDigest
 

G

GCMCipher - Class in org.clazzes.optional.sec
galois counter mode for symmetric ciphers.
GCMCipher(BlockCipher) - Constructor for class org.clazzes.optional.sec.GCMCipher
 
GCMCipher(BlockCipher, GCMMultiplier) - Constructor for class org.clazzes.optional.sec.GCMCipher
 
GCMMultiplier - Interface in org.clazzes.optional.sec.gcm
 
GeneralDigest - Class in org.clazzes.optional.sec
Base class for the most common digests.
GeneralDigest() - Constructor for class org.clazzes.optional.sec.GeneralDigest
Standard constructor
GeneralDigest(GeneralDigest) - Constructor for class org.clazzes.optional.sec.GeneralDigest
Copy constructor.
generateMask(byte[], int, int, byte[], int, int) - Method in interface org.clazzes.optional.sec.rsa.MGF
Generate maskLen mask bytes from a seed.
generateMask(byte[], int, int, byte[], int, int) - Method in class org.clazzes.optional.sec.rsa.MGF1
 
getAlgorithmName() - Method in class org.clazzes.optional.sec.AESCipher
 
getAlgorithmName() - Method in interface org.clazzes.optional.sec.BlockCipher
Return the name of the algorithm the cipher implements.
getAlgorithmName() - Method in class org.clazzes.optional.sec.CBCCipher
return the algorithm name and mode.
getAlgorithmName() - Method in interface org.clazzes.optional.sec.Digest
 
getAlgorithmName() - Method in class org.clazzes.optional.sec.GCMCipher
 
getAlgorithmName() - Method in class org.clazzes.optional.sec.HMac
 
getAlgorithmName() - Method in interface org.clazzes.optional.sec.Mac
Return the name of the algorithm the MAC implements.
getAlgorithmName() - Method in class org.clazzes.optional.sec.SHA1Digest
 
getAlgorithmName() - Method in class org.clazzes.optional.sec.SHA256Digest
 
getASN1() - Method in class org.clazzes.optional.lang.BigInt
Convert this BigInt to an ASN1 MSB first integer representation.
getBlockSize() - Method in class org.clazzes.optional.sec.AESCipher
 
getBlockSize() - Method in interface org.clazzes.optional.sec.BlockCipher
 
getBlockSize() - Method in class org.clazzes.optional.sec.CBCCipher
return the block size of the underlying cipher.
getBlockSize() - Method in class org.clazzes.optional.sec.GCMCipher
 
getByteLength() - Method in class org.clazzes.optional.lang.BigInt
 
getByteLength() - Method in interface org.clazzes.optional.sec.Digest
Return the size in bytes of the internal buffer the digest applies it's compression function to.
getByteLength() - Method in class org.clazzes.optional.sec.GeneralDigest
 
getDigestSize() - Method in interface org.clazzes.optional.sec.Digest
 
getDigestSize() - Method in class org.clazzes.optional.sec.SHA1Digest
 
getDigestSize() - Method in class org.clazzes.optional.sec.SHA256Digest
 
getExponent() - Method in class org.clazzes.optional.sec.rsa.RSAPubKey
 
getHighestBit() - Method in class org.clazzes.optional.lang.BigInt
Calculate the highest bit set in the magnitude of this number.
getMac() - Method in interface org.clazzes.optional.sec.AEADBlockCipher
Return the value of the MAC associated with the last stream processed.
getMac() - Method in class org.clazzes.optional.sec.GCMCipher
 
getMacSize() - Method in class org.clazzes.optional.sec.HMac
 
getMacSize() - Method in interface org.clazzes.optional.sec.Mac
Return the block size for this MAC (in bytes).
getModulus() - Method in class org.clazzes.optional.sec.rsa.RSAPrivKey
 
getModulus() - Method in class org.clazzes.optional.sec.rsa.RSAPubKey
 
getMsbMagnitude() - Method in class org.clazzes.optional.lang.BigInt
 
getOutputSize(int) - Method in interface org.clazzes.optional.sec.AEADBlockCipher
 
getOutputSize(int) - Method in class org.clazzes.optional.sec.GCMCipher
 
getPubExponent() - Method in class org.clazzes.optional.sec.rsa.RSAPrivKey
 
getPubKey() - Method in class org.clazzes.optional.sec.rsa.RSAPrivKey
 
getSign() - Method in class org.clazzes.optional.lang.BigInt
 
getSubArray(byte[], int, int) - Static method in class org.clazzes.optional.sec.Pack
 
getUnderlyingCipher() - Method in class org.clazzes.optional.sec.AESCipher
 
getUnderlyingCipher() - Method in interface org.clazzes.optional.sec.BlockCipher
return the underlying block cipher that we are wrapping or null, if we do wrap another cipher.
getUnderlyingCipher() - Method in class org.clazzes.optional.sec.CBCCipher
return the underlying block cipher that we are wrapping.
getUnderlyingCipher() - Method in class org.clazzes.optional.sec.GCMCipher
 
getUnderlyingDigest() - Method in class org.clazzes.optional.sec.HMac
 
getUnderlyingDigest() - Method in interface org.clazzes.optional.sec.rsa.MGF
 
getUnderlyingDigest() - Method in class org.clazzes.optional.sec.rsa.MGF1
 
getUpdateOutputSize(int) - Method in class org.clazzes.optional.sec.GCMCipher
 

H

hexValueOf(String) - Static method in class org.clazzes.optional.lang.BigInt
Parse the given hexadecimal string and return the resulting BigInt.
HMac - Class in org.clazzes.optional.sec
HMAC cf. to RFC2104 imported from bouncycastle.
HMac(Digest) - Constructor for class org.clazzes.optional.sec.HMac
Base constructor for one of the standard digest algorithms that the byteLength of the algorithm is know for.

I

init(byte[], int, byte[], boolean) - Method in interface org.clazzes.optional.sec.AEADBlockCipher
Initialize the block cipher.
init(byte[], boolean) - Method in class org.clazzes.optional.sec.AESCipher
initialise an AES cipher.
init(byte[], boolean) - Method in interface org.clazzes.optional.sec.BlockCipher
Initialize the block cipher.
init(byte[], boolean) - Method in class org.clazzes.optional.sec.CBCCipher
Initialize the cipher and, possibly, the initialization vector (IV).
init(byte[]) - Method in class org.clazzes.optional.sec.gcm.BasicGCMMultiplier
 
init(byte[]) - Method in interface org.clazzes.optional.sec.gcm.GCMMultiplier
 
init(byte[], boolean) - Method in class org.clazzes.optional.sec.GCMCipher
 
init(byte[], int, byte[], boolean) - Method in class org.clazzes.optional.sec.GCMCipher
 
init(byte[]) - Method in class org.clazzes.optional.sec.HMac
 
init(byte[]) - Method in interface org.clazzes.optional.sec.Mac
Initialise the MAC.
intToBigEndian(int, byte[], int) - Static method in class org.clazzes.optional.sec.Pack
 
InvalidCipherTextException - Exception in org.clazzes.optional.sec
An exception thrown when a additionally authenticated block cipher encounter a checksum error.
InvalidCipherTextException() - Constructor for exception org.clazzes.optional.sec.InvalidCipherTextException
base constructor.
InvalidCipherTextException(String) - Constructor for exception org.clazzes.optional.sec.InvalidCipherTextException
create a InvalidCipherTextException with the given message.

M

Mac - Interface in org.clazzes.optional.sec
A message authentication code.
MGF - Interface in org.clazzes.optional.sec.rsa
A mask generation function for the OAEP algorithm as defined in Appendix B.2 of RFC 3447.
MGF1 - Class in org.clazzes.optional.sec.rsa
The mask generation function no. 1 for the OAEP algorithm as defined in Appendix B.2.1 of RFC 3447.
MGF1(Digest) - Constructor for class org.clazzes.optional.sec.rsa.MGF1
 
mod(BigInt) - Method in class org.clazzes.optional.lang.BigInt
Calculate this modulo b.
mul(BigInt) - Method in class org.clazzes.optional.lang.BigInt
Multiply a and this and return the result.
mulMod(BigInt, BigInt) - Method in class org.clazzes.optional.lang.BigInt
Multiply a and this and return the result modulo b.
multiplyH(byte[]) - Method in class org.clazzes.optional.sec.gcm.BasicGCMMultiplier
 
multiplyH(byte[]) - Method in interface org.clazzes.optional.sec.gcm.GCMMultiplier
 

N

NativeRandomGenerator - Class in org.clazzes.optional.sec
A random generator, which uses the JRE implementation of a secure random generator.
NativeRandomGenerator() - Constructor for class org.clazzes.optional.sec.NativeRandomGenerator
 
nextBytes(byte[]) - Method in class org.clazzes.optional.sec.DigestRandomGenerator
 
nextBytes(byte[]) - Method in class org.clazzes.optional.sec.NativeRandomGenerator
 
nextBytes(byte[]) - Method in interface org.clazzes.optional.sec.RandomGenerator
Fill bytes with random values.
Number - Class in org.clazzes.optional.lang
Source copied from Number
Number() - Constructor for class org.clazzes.optional.lang.Number
 

O

OAEP - Class in org.clazzes.optional.sec.rsa
OAEP algorithm as defined in Section 7.1 of RFC 3447.
OAEP(Digest, MGF, RandomGenerator) - Constructor for class org.clazzes.optional.sec.rsa.OAEP
 
org.clazzes.optional.io - package org.clazzes.optional.io
 
org.clazzes.optional.lang - package org.clazzes.optional.lang
 
org.clazzes.optional.sec - package org.clazzes.optional.sec
 
org.clazzes.optional.sec.gcm - package org.clazzes.optional.sec.gcm
 
org.clazzes.optional.sec.rsa - package org.clazzes.optional.sec.rsa
 
org.clazzes.optional.util - package org.clazzes.optional.util
 
org.clazzes.optional.util.zip - package org.clazzes.optional.util.zip
 

P

Pack - Class in org.clazzes.optional.sec
Helper methods for packing/unpacking data.
Pack() - Constructor for class org.clazzes.optional.sec.Pack
 
powMod(int, BigInt) - Method in class org.clazzes.optional.lang.BigInt
Calculate this^n and return the result modulo b.
powMod(BigInt, BigInt) - Method in class org.clazzes.optional.lang.BigInt
Calculate this^n and return the result modulo b.
processBlock(byte[], int, byte[], int) - Method in class org.clazzes.optional.sec.AESCipher
 
processBlock(byte[], int, byte[], int) - Method in interface org.clazzes.optional.sec.BlockCipher
Proceed the next block of BlockCipher.getBlockSize() bytes from the input.
processBlock(byte[], int, byte[], int) - Method in class org.clazzes.optional.sec.CBCCipher
Process one block of input from the array in and write it to the out array.
processBlock(byte[], int, byte[], int) - Method in class org.clazzes.optional.sec.GCMCipher
 
processBlock() - Method in class org.clazzes.optional.sec.GeneralDigest
 
processBlock() - Method in class org.clazzes.optional.sec.SHA1Digest
 
processBlock() - Method in class org.clazzes.optional.sec.SHA256Digest
 
processBytes(byte[], int, int, byte[], int) - Method in interface org.clazzes.optional.sec.AEADBlockCipher
Proceed the next block of in_len bytes from the input.
processBytes(byte[], int, int, byte[], int) - Method in class org.clazzes.optional.sec.GCMCipher
 
processLength(long) - Method in class org.clazzes.optional.sec.GeneralDigest
 
processLength(long) - Method in class org.clazzes.optional.sec.SHA1Digest
 
processLength(long) - Method in class org.clazzes.optional.sec.SHA256Digest
 
processWord(byte[], int) - Method in class org.clazzes.optional.sec.GeneralDigest
 
processWord(byte[], int) - Method in class org.clazzes.optional.sec.SHA1Digest
 
processWord(byte[], int) - Method in class org.clazzes.optional.sec.SHA256Digest
 

R

RandomGenerator - Interface in org.clazzes.optional.sec
Generic interface for objects generating random bytes.
readDataInstance(DataInput) - Static method in class org.clazzes.optional.lang.BigInt
Read a positive BigInt from the given data input using a two byte length prefix.
readDynamicIntArray(DataInput, int) - Static method in class org.clazzes.optional.io.DataCodingHelper
Read a dynamic integer array from the stream.
readDynamicOpaque(DataInput, int) - Static method in class org.clazzes.optional.io.DataCodingHelper
Read a dynamic opaque byte array from the stream.
readUInt3(DataInput) - Static method in class org.clazzes.optional.io.DataCodingHelper
Read a three-byte unsigned integer from a stream.
readUInt4(DataInput) - Static method in class org.clazzes.optional.io.DataCodingHelper
Read a four-byte unsigned integer from a stream.
reset() - Method in class org.clazzes.optional.sec.AESCipher
 
reset() - Method in interface org.clazzes.optional.sec.BlockCipher
Reset this cipher to state of the last call to #init(byte[], byte[], boolean).
reset() - Method in class org.clazzes.optional.sec.CBCCipher
reset the chaining vector back to the IV and reset the underlying cipher.
reset() - Method in interface org.clazzes.optional.sec.Digest
Reset the hash in order to reuse this instance.
reset() - Method in class org.clazzes.optional.sec.GCMCipher
 
reset() - Method in class org.clazzes.optional.sec.GeneralDigest
 
reset() - Method in class org.clazzes.optional.sec.HMac
Reset the mac generator.
reset() - Method in interface org.clazzes.optional.sec.Mac
Reset the MAC.
reset() - Method in class org.clazzes.optional.sec.SHA1Digest
reset the chaining variables
reset() - Method in class org.clazzes.optional.sec.SHA256Digest
reset the chaining variables
RSACrtPrivKey - Class in org.clazzes.optional.sec.rsa
An RSA private key with a passphrase-encrypted storage possibility.
RSACrtPrivKey(BigInt, BigInt, BigInt, BigInt, BigInt, BigInt, BigInt, BigInt) - Constructor for class org.clazzes.optional.sec.rsa.RSACrtPrivKey
 
RSAPrivKey - Class in org.clazzes.optional.sec.rsa
An RSA private key with a passphrase-encrypted storage possibility.
RSAPrivKey(BigInt, BigInt, BigInt) - Constructor for class org.clazzes.optional.sec.rsa.RSAPrivKey
Construct an RSA private key from the given numbers.
RSAPubKey - Class in org.clazzes.optional.sec.rsa
A RSA public key with a public exponent and a modulus.
RSAPubKey(BigInt, BigInt) - Constructor for class org.clazzes.optional.sec.rsa.RSAPubKey
Construct a new RSA public key by the given modulus and public exponent.

S

SeededRandomGenerator - Interface in org.clazzes.optional.sec
Random generator, which needs seeding fromwithin the application.
Serializable - Interface in org.clazzes.optional.io
 
SHA1Digest - Class in org.clazzes.optional.sec
implementation of SHA-1 as outlined in "Handbook of Applied Cryptography", pages 346 - 349.
SHA1Digest() - Constructor for class org.clazzes.optional.sec.SHA1Digest
Standard constructor
SHA1Digest(SHA1Digest) - Constructor for class org.clazzes.optional.sec.SHA1Digest
Copy constructor.
SHA256Digest - Class in org.clazzes.optional.sec
FIPS 180-2 implementation of SHA-256.
SHA256Digest() - Constructor for class org.clazzes.optional.sec.SHA256Digest
Standard constructor
SHA256Digest(SHA256Digest) - Constructor for class org.clazzes.optional.sec.SHA256Digest
Copy constructor.
split(String, String) - Static method in class org.clazzes.optional.util.StringSplitter
 
StringSplitter - Class in org.clazzes.optional.util
 
StringSplitter() - Constructor for class org.clazzes.optional.util.StringSplitter
 
sub(BigInt) - Method in class org.clazzes.optional.lang.BigInt
Subtract a from this and return the result.

T

toHexString() - Method in class org.clazzes.optional.lang.BigInt
Convert a BigInt to a hexadecimal string.
toJavaInitializer(String) - Method in class org.clazzes.optional.lang.BigInt
Return a jString, which may be inserted in JAVA source code to initialize a static instance in the form static final BigInt identifier = new BigInt(sign, new int[] { 0xdeabbeef,0xadbedba,.... });
toString() - Method in class org.clazzes.optional.lang.BigInt
 

U

update(byte) - Method in interface org.clazzes.optional.sec.Digest
update the message digest with a single byte.
update(byte[], int, int) - Method in interface org.clazzes.optional.sec.Digest
Add more data to the hash function.
update(byte) - Method in class org.clazzes.optional.sec.GeneralDigest
 
update(byte[], int, int) - Method in class org.clazzes.optional.sec.GeneralDigest
 
update(byte) - Method in class org.clazzes.optional.sec.HMac
 
update(byte[], int, int) - Method in class org.clazzes.optional.sec.HMac
 
update(byte) - Method in interface org.clazzes.optional.sec.Mac
add a single byte to the mac for processing.
update(byte[], int, int) - Method in interface org.clazzes.optional.sec.Mac
 

V

valueOf(String) - Static method in class org.clazzes.optional.lang.BigInt
Parse the given decimal string and return the resulting BigInt.
valueOf(byte[]) - Static method in class org.clazzes.optional.lang.BigInt
Parse an ASN.1 INTEGER representation.

W

writeData(DataOutput) - Method in interface org.clazzes.optional.io.DataCodeable
Write fields of this instance to the given DataOutput instance.
writeData(DataOutput) - Method in class org.clazzes.optional.lang.BigInt
Write the MSB magnitude of this BigInt to the given data output using a two byte length prefix.
writeDynamicIntArray(DataOutput, int, int[]) - Static method in class org.clazzes.optional.io.DataCodingHelper
Write a dynamic integer array to the stream.
writeDynamicOpaque(DataOutput, int, byte[]) - Static method in class org.clazzes.optional.io.DataCodingHelper
Write a dynamic opaque byte array to the stream.
writeUInt3(DataOutput, int) - Static method in class org.clazzes.optional.io.DataCodingHelper
Write a three-byte unsigned integer value to the stream.

A B C D E F G H I M N O P R S T U V W

Copyright © 2010. All Rights Reserved.