Skip navigation links
A B C D E F G H I L M P R S T U V W Z 

A

Alignment - Enum in dk.vajhoej.record
Enum Alignment specifies alignment within native struct.
analyze(Class<?>) - Static method in class dk.vajhoej.record.StructInfo
Analyze class.
analyze(Class<T>) - Static method in class dk.vajhoej.record.StructInfoCache
Convenience method to get StructInfo from cache and analyze class if not in cache.
ArrayField - Annotation Type in dk.vajhoej.record
Annotation for arrays.
ASCII - Static variable in class dk.vajhoej.record.BCDUtil
ASCII zone nibble.

B

BCDUtil - Class in dk.vajhoej.record
Class TimeUtil converts between bytes with Binary Coded Decimals ant BigDecimal objects.
BCDUtil() - Constructor for class dk.vajhoej.record.BCDUtil
 

C

close() - Method in class dk.vajhoej.record.StructReaderStream
Close underlying InputStream.
CodeGen - Class in dk.vajhoej.record
Class CodeGen generates FastStructReader's and FastStructWriter's using javassist library.
CodeGen() - Constructor for class dk.vajhoej.record.CodeGen
 
CompositFastStructReader<T> - Class in dk.vajhoej.record
Class CompositFastStructReader dispatches to a number of FastStructReaders's based on peek of actual sub class.
CompositFastStructReader(Class<T>, Map<Class<? extends T>, FastStructReader<? extends T>>) - Constructor for class dk.vajhoej.record.CompositFastStructReader
Create instance of CompositFastStructReader.
CompositFastStructWriter - Class in dk.vajhoej.record
Class CompositFastStructWriter dispatches to a number of FastStructWriter's based on actual object type.
CompositFastStructWriter(Map<Class<?>, FastStructWriter<?>>) - Constructor for class dk.vajhoej.record.CompositFastStructWriter
Create instance of CompositFastStructWriter.
CompositFastStructWriter(Map<Class<?>, FastStructWriter<?>>, int) - Constructor for class dk.vajhoej.record.CompositFastStructWriter
Create instance of CompositFastStructWriter.
convert(T1) - Method in interface dk.vajhoej.record.Util.Transformer
Convert object.
convert(T1) - Method in interface dk.vajhoej.record.Util2.Transformer
Convert object.
convert(T1) - Method in interface dk.vajhoej.record8.TransformerFunction
Convert object.
convertSelector(Object) - Method in interface dk.vajhoej.record.InfoProvider
Converts a selector of any type to a usable integer selector.
copyAll(Class<T1>, byte[], Class<T2>, Util.Transformer<T1, T2>) - Static method in class dk.vajhoej.record.Util
Convert array of struct in bytes into array of struct in bytes.
copyAll(Class<T1>, InputStream, Class<T2>, OutputStream, Util.Transformer<T1, T2>) - Static method in class dk.vajhoej.record.Util
Convert array of struct in stream into array of struct in stream.
copyAll(Class<T1>, byte[], Class<T2>, Util2.Transformer<T1, T2>, LengthProvider2) - Static method in class dk.vajhoej.record.Util2
Convert array of struct in bytes into array of struct in bytes.
copyAll(Class<T1>, InputStream, Class<T2>, OutputStream, Util2.Transformer<T1, T2>, LengthProvider2) - Static method in class dk.vajhoej.record.Util2
Convert array of struct in stream into array of struct in stream.
copyAll(Class<T1>, byte[], Class<T2>, Util2.Transformer<T1, T2>, LengthFunction, MaxLengthFunction, ElementsFunction) - Static method in class dk.vajhoej.record8.Util8
Convert array of struct in bytes into array of struct in bytes.
copyAll(Class<T1>, InputStream, Class<T2>, OutputStream, Util2.Transformer<T1, T2>, LengthFunction, MaxLengthFunction, ElementsFunction) - Static method in class dk.vajhoej.record8.Util8
Convert array of struct in stream into array of struct in stream.

D

d2t(long) - Static method in class dk.vajhoej.record.VAXFloatUtil
Convert from D floating to T floating.
decodePackedBCD(byte[], int) - Static method in class dk.vajhoej.record.BCDUtil
Convert from packed BCD to BigDecimal.
decodeZonedBCD(byte[], byte, int) - Static method in class dk.vajhoej.record.BCDUtil
Convert from zoned BCD to BigDecimal.
dk.vajhoej - package dk.vajhoej
Placeholder.
dk.vajhoej.record - package dk.vajhoej.record
Library for reading and writing binary native structs.
dk.vajhoej.record8 - package dk.vajhoej.record8
Addition with support for Java 8 lambda functions.

E

EBCDIC - Static variable in class dk.vajhoej.record.BCDUtil
EBCDIC zone nibble.
ElementsFunction - Interface in dk.vajhoej.record8
Functional interface for LengthProvider2.getElements().
encodePackedBCD(BigDecimal, int, int) - Static method in class dk.vajhoej.record.BCDUtil
Convert from BigDecimal to packed BCD.
encodeZonedBCD(BigDecimal, byte, int, int) - Static method in class dk.vajhoej.record.BCDUtil
Convert from BigDecimal to zoned BCD.
Endian - Enum in dk.vajhoej.record
Enum Endian specifies endianess within native struct.
extend(int) - Method in class dk.vajhoej.record.StructWriter
Extend capacity.
ExtEndian - Enum in dk.vajhoej.record
Enum ExtEndian specifies endianess in field within native struct.

F

f2s(int) - Static method in class dk.vajhoej.record.VAXFloatUtil
Convert from F floating to S floating.
FastStructReader<T> - Interface in dk.vajhoej.record
Interface FastStructWriter define how to access a struct reading class with generated code.
FastStructWriter<T> - Interface in dk.vajhoej.record
Interface FastStructWriter define how to access a struct writing class with generated code.
FieldInfo - Class in dk.vajhoej.record
Class FieldInfo contains information about a native struct field needed for conversions.
FieldInfo(FieldType, int, int, String, byte, int, ExtEndian, boolean, char, Class<?>, Field, Map<Integer, SubClassAndPad>, boolean, int, int) - Constructor for class dk.vajhoej.record.FieldInfo
Create instance of FieldInfo with all necessary properties.
FieldType - Enum in dk.vajhoej.record
Enum FieldType specifies native struct types.
fromJavaTime(long) - Static method in class dk.vajhoej.record.TimeUtil
Convert from long with Java time (milliseconds since 1-Jan-1970) to Date object.
fromUnixTime(int) - Static method in class dk.vajhoej.record.TimeUtil
Convert from int with Unix time (seconds since 1-Jan-1970) as 32 bit to Date object.
fromUnixTime64(long) - Static method in class dk.vajhoej.record.TimeUtil
Convert from long with Unix time (seconds since 1-Jan-1970) as 64 bit to Date object.
fromVMSTime(long) - Static method in class dk.vajhoej.record.TimeUtil
Convert from long with VMS time (100 nanoseconds since 17-Nov-1858) to Date object.

G

g2t(long) - Static method in class dk.vajhoej.record.VAXFloatUtil
Convert from G floating to T floating.
genReader(Class<T>) - Static method in class dk.vajhoej.record.CodeGen
Generate FastStructReader.
genWriter(Class<T>, int) - Static method in class dk.vajhoej.record.CodeGen
Generate FastStructWriter.
genWriter(Class<T>) - Static method in class dk.vajhoej.record.CodeGen
Generate FastStructWriter.
get(Class<?>) - Method in class dk.vajhoej.record.StructInfoCache
Get StructInfo from cache.
getAlignment() - Method in class dk.vajhoej.record.StructInfo
Get Alignment.
getByteBuffer() - Method in class dk.vajhoej.record.CompositFastStructReader
 
getByteBuffer() - Method in class dk.vajhoej.record.CompositFastStructWriter
 
getByteBuffer() - Method in interface dk.vajhoej.record.FastStructReader
Get byte buffer.
getByteBuffer() - Method in interface dk.vajhoej.record.FastStructWriter
Get byte buffer.
getBytes() - Method in class dk.vajhoej.record.CompositFastStructWriter
 
getBytes() - Method in interface dk.vajhoej.record.FastStructWriter
Get bytes.
getBytes() - Method in class dk.vajhoej.record.StructWriter
Get bytes.
getClassType() - Method in class dk.vajhoej.record.FieldInfo
Get Java class type.
getCountprefix() - Method in class dk.vajhoej.record.FieldInfo
Get length in bytes of count prefix.
getDecimals() - Method in class dk.vajhoej.record.FieldInfo
Get decimals of BCD.
getElements() - Method in class dk.vajhoej.record.FieldInfo
Get number of elements.
getElements(Object, int) - Method in interface dk.vajhoej.record.LengthProvider2
Get number of elements in array.
getElements(Object, int) - Method in interface dk.vajhoej.record8.ElementsFunction
Get number of elements in array.
getEncoding() - Method in class dk.vajhoej.record.FieldInfo
Get encoding of string.
getEndianess() - Method in class dk.vajhoej.record.FieldInfo
Get endianess.
getEndianess() - Method in class dk.vajhoej.record.StructInfo
Get endianess.
getEndpad() - Method in class dk.vajhoej.record.StructInfo
Get pad at end.
getField() - Method in class dk.vajhoej.record.FieldInfo
Get corresponding reflection object.
getFields() - Method in class dk.vajhoej.record.StructInfo
Get fields.
getHitRate() - Method in class dk.vajhoej.record.StructInfoCache
Get cache hit rate.
getInstance() - Static method in class dk.vajhoej.record.StructInfoCache
Get singleton instance.
getLength() - Method in class dk.vajhoej.record.FieldInfo
Get length of fixed length string.
getLength(Object, int) - Method in interface dk.vajhoej.record.LengthProvider
Get length of field.
getLength() - Method in class dk.vajhoej.record.StructInfo
Get length of fixed length parts of struct.
getLength() - Method in class dk.vajhoej.record.StructWriter
Get length.
getLength(Object, int) - Method in interface dk.vajhoej.record8.LengthFunction
Get length of field.
getLengthProvider(Object, int) - Method in interface dk.vajhoej.record.LengthProvider2
Get length provider for sub struct.
getMaxLength() - Method in interface dk.vajhoej.record.LengthProvider2
Get max length of struct.
getMaxLength() - Method in interface dk.vajhoej.record8.MaxLengthFunction
Get max length of struct.
getOffset(String) - Method in class dk.vajhoej.record.StructInfo
Get offset for field name.
getPad() - Method in class dk.vajhoej.record.FieldInfo
Get whether to pad.
getPad() - Method in class dk.vajhoej.record.SubClassAndPad
Get padding.
getPadchar() - Method in class dk.vajhoej.record.FieldInfo
Get pad character.
getPrefixlength() - Method in class dk.vajhoej.record.FieldInfo
Get prefix length.
getRemaining() - Method in class dk.vajhoej.record.StructReader
Get number of remaining bytes.
getSelectorField() - Method in class dk.vajhoej.record.StructInfo
Get index of selector field.
getSelectPad() - Method in class dk.vajhoej.record.FieldInfo
Get sub class padding to fixed length.
getSelects() - Method in class dk.vajhoej.record.FieldInfo
Get sub class selections.
getStructType() - Method in class dk.vajhoej.record.FieldInfo
Get native struct type.
getSubClass() - Method in class dk.vajhoej.record.SubClassAndPad
Get class.
getZone() - Method in class dk.vajhoej.record.FieldInfo
Get zone of zoned BCD.

H

HandlerFunction<T> - Interface in dk.vajhoej.record8
Functional interface for ObjectHandler.process().
hasConvertSelector() - Method in interface dk.vajhoej.record.InfoProvider
Has selector converter that must be used.

I

InfoProvider - Interface in dk.vajhoej.record
Interface InfoProvider represents something that can provide: - converted selector
init(byte[]) - Method in class dk.vajhoej.record.CompositFastStructReader
 
init(ByteBuffer) - Method in class dk.vajhoej.record.CompositFastStructReader
 
init(byte[]) - Method in interface dk.vajhoej.record.FastStructReader
Initialize byte buffer.
init(ByteBuffer) - Method in interface dk.vajhoej.record.FastStructReader
Initialize byte buffer.
isFixedLength() - Method in class dk.vajhoej.record.StructInfo
Is this a fixed length struct.

L

LengthFunction - Interface in dk.vajhoej.record8
Functional interface for LengthProvider.getLength().
LengthProvider - Interface in dk.vajhoej.record
Interface LengthProvider represents something that can provide length of a field.
LengthProvider2 - Interface in dk.vajhoej.record
Interface LengthProvider2 represents something that can provide: - length of a field - maximum length of the entire struct - number of elements in array

M

MaxLengthFunction - Interface in dk.vajhoej.record8
Functional interface for LengthProvider2.getMaxLenggth().
more() - Method in class dk.vajhoej.record.CompositFastStructReader
 
more() - Method in interface dk.vajhoej.record.FastStructReader
More records available.
more() - Method in class dk.vajhoej.record.StructReader
More records available.
more() - Method in class dk.vajhoej.record.StructReaderStream
More records available.

P

process(T) - Method in interface dk.vajhoej.record.Util.ObjectHandler
Process object.
process(T) - Method in interface dk.vajhoej.record.Util2.ObjectHandler
Process object.
process(T) - Method in interface dk.vajhoej.record8.HandlerFunction
Process object.
put(Class<?>, StructInfo) - Method in class dk.vajhoej.record.StructInfoCache
Put StructInfo into cache.

R

read(Class<T>) - Method in class dk.vajhoej.record.CompositFastStructReader
 
read(Class<T>) - Method in interface dk.vajhoej.record.FastStructReader
Read.
read(Class<T>) - Method in class dk.vajhoej.record.StructReader
Read.
read(Class<T>, LengthProvider) - Method in class dk.vajhoej.record.StructReader
Read.
read(Class<T>, LengthProvider2) - Method in class dk.vajhoej.record.StructReader
Read.
read(Class<T>, InfoProvider) - Method in class dk.vajhoej.record.StructReader
Read.
read(T) - Method in class dk.vajhoej.record.StructReader
Read.
read(T, LengthProvider) - Method in class dk.vajhoej.record.StructReader
Read.
read(T, LengthProvider2) - Method in class dk.vajhoej.record.StructReader
Read.
read(T, InfoProvider) - Method in class dk.vajhoej.record.StructReader
Read.
read(Class<T>) - Method in class dk.vajhoej.record.StructReaderStream
Read.
read(Class<T>, LengthProvider2) - Method in class dk.vajhoej.record.StructReaderStream
Read.
read8(Class<T>, LengthFunction) - Method in class dk.vajhoej.record8.StructReader8
Read.
read8(Class<T>, LengthFunction, MaxLengthFunction) - Method in class dk.vajhoej.record8.StructReader8
Read.
read8(Class<T>, LengthFunction, MaxLengthFunction, ElementsFunction) - Method in class dk.vajhoej.record8.StructReader8
Read.
readAll(Class<T>, byte[]) - Static method in class dk.vajhoej.record.Util
Read array of struct in byte array into list of objects.
readAll(Class<T>, InputStream, List<T>) - Static method in class dk.vajhoej.record.Util
Read array of struct in stream into list of objects.
readAll(Class<T>, InputStream, Util.ObjectHandler<T>) - Static method in class dk.vajhoej.record.Util
Read array of struct in stream and processes them by handler.
readAll(Class<T>, byte[], LengthProvider2) - Static method in class dk.vajhoej.record.Util2
Read array of struct in byte array into list of objects.
readAll(Class<T>, InputStream, List<T>, LengthProvider2) - Static method in class dk.vajhoej.record.Util2
Read array of struct in stream into list of objects.
readAll(Class<T>, InputStream, Util2.ObjectHandler<T>, LengthProvider2) - Static method in class dk.vajhoej.record.Util2
Read array of struct in stream and processes them by handler.
readAll(Class<T>, byte[], LengthFunction, MaxLengthFunction, ElementsFunction) - Static method in class dk.vajhoej.record8.Util8
Read array of struct in byte array into list of objects.
readAll(Class<T>, InputStream, List<T>, LengthFunction, MaxLengthFunction, ElementsFunction) - Static method in class dk.vajhoej.record8.Util8
Read array of struct in stream into list of objects.
readAll(Class<T>, InputStream, Util2.ObjectHandler<T>, LengthFunction, MaxLengthFunction, ElementsFunction) - Static method in class dk.vajhoej.record8.Util8
Read array of struct in stream and processes them by handler.
RecordException - Exception in dk.vajhoej.record
Class RecordException encapsulates exceptions related to record processing.
RecordException() - Constructor for exception dk.vajhoej.record.RecordException
Create instance of RecordException.
RecordException(String, Throwable) - Constructor for exception dk.vajhoej.record.RecordException
Create instance of RecordException.
RecordException(String) - Constructor for exception dk.vajhoej.record.RecordException
Create instance of RecordException.
RecordException(Throwable) - Constructor for exception dk.vajhoej.record.RecordException
Create instance of RecordException.
reset() - Method in class dk.vajhoej.record.StructInfoCache
Reset cache.

S

s2f(int) - Static method in class dk.vajhoej.record.VAXFloatUtil
Convert from S floating to F floating.
Selector - Annotation Type in dk.vajhoej.record
Annotation for selection of sub types.
Struct - Annotation Type in dk.vajhoej.record
Annotation for structs.
StructField - Annotation Type in dk.vajhoej.record
Annotation for fields.
StructInfo - Class in dk.vajhoej.record
Class StructInfo contains information about a native struct needed for reading and/or writing.
StructInfo(Endian, Alignment, boolean, List<FieldInfo>, Class<?>) - Constructor for class dk.vajhoej.record.StructInfo
Create instance of StructInfo.
StructInfoCache - Class in dk.vajhoej.record
Class StructInfoCache caches StructInfo objects in a singleton cache.
StructReader - Class in dk.vajhoej.record
Class StructReader reads a Java object from a byte array containing a native struct.
StructReader(byte[]) - Constructor for class dk.vajhoej.record.StructReader
Create instance of StructReader.
StructReader8 - Class in dk.vajhoej.record8
Extension of StructReader class enabling the usage of lambda functions.
StructReader8(byte[]) - Constructor for class dk.vajhoej.record8.StructReader8
Create instance of StructReader8.
StructReaderStream - Class in dk.vajhoej.record
Class StructReaderStream reads a Java object from an input stream containing a native struct.
StructReaderStream(InputStream, int, int) - Constructor for class dk.vajhoej.record.StructReaderStream
Create instance of StructReaderStream.
StructWriter - Class in dk.vajhoej.record
Class StructWriter writes a Java object to a byte array as a native struct.
StructWriter() - Constructor for class dk.vajhoej.record.StructWriter
Construct instance of StructWriter with default buffer size.
StructWriter(int) - Constructor for class dk.vajhoej.record.StructWriter
Construct instance of StructWriter.
StructWriter8 - Class in dk.vajhoej.record8
Extension of StructWriter class enabling the usage of lambda functions.
StructWriter8() - Constructor for class dk.vajhoej.record8.StructWriter8
Construct instance of StructWriter with default buffer size.
StructWriter8(int) - Constructor for class dk.vajhoej.record8.StructWriter8
Construct instance of StructWriter.
SubClassAndPad - Class in dk.vajhoej.record
Class SubClassAndPad contains information about class and padding for select field.
SubClassAndPad(Class<?>, int) - Constructor for class dk.vajhoej.record.SubClassAndPad
Create instance of ClassAndPad with all necessary properties.
SubType - Annotation Type in dk.vajhoej.record
Annotation for sub types.

T

t2d(long) - Static method in class dk.vajhoej.record.VAXFloatUtil
Convert from T floating to D floating.
t2g(long) - Static method in class dk.vajhoej.record.VAXFloatUtil
Convert from T floating to G floating.
TimeUtil - Class in dk.vajhoej.record
Class TimeUtil converts between integers in various time formats and Date objects.
TimeUtil() - Constructor for class dk.vajhoej.record.TimeUtil
 
toJavaTime(Date) - Static method in class dk.vajhoej.record.TimeUtil
Convert from Date object to long with Java time (milliseconds since 1-Jan-1970).
toUnixTime(Date) - Static method in class dk.vajhoej.record.TimeUtil
Convert from Date object to int with Unix time (seconds since 1-Jan-1970) as 32 bit.
toUnixTime64(Date) - Static method in class dk.vajhoej.record.TimeUtil
Convert from Date object to long with Unix time (seconds since 1-Jan-1970) as 64 bit.
toVMSTime(Date) - Static method in class dk.vajhoej.record.TimeUtil
Convert from Date object to long with VMS time (100 nanoseconds since 17-Nov-1858).
TransformerFunction<T1,T2> - Interface in dk.vajhoej.record8
Functional interface for Transformer.convert().

U

update(byte[]) - Method in class dk.vajhoej.record.StructReader
Update byte array to read from by adding bytes.
Util - Class in dk.vajhoej.record
Utility class to process lists and to work with files instead of byte arrays.
Util() - Constructor for class dk.vajhoej.record.Util
 
Util.ObjectHandler<T> - Interface in dk.vajhoej.record
Interface for processing objects read.
Util.Transformer<T1,T2> - Interface in dk.vajhoej.record
Interface for converting objects read.
Util2 - Class in dk.vajhoej.record
Utility class to process lists and to work with files instead of byte arrays trying to work even with variable length structs.
Util2() - Constructor for class dk.vajhoej.record.Util2
 
Util2.ObjectHandler<T> - Interface in dk.vajhoej.record
Interface for processing objects read.
Util2.Transformer<T1,T2> - Interface in dk.vajhoej.record
Interface for converting objects read.
Util8 - Class in dk.vajhoej.record8
Extension of Util2 class enabling the usage of lambda functions.
Util8() - Constructor for class dk.vajhoej.record8.Util8
 

V

valueOf(String) - Static method in enum dk.vajhoej.record.Alignment
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum dk.vajhoej.record.Endian
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum dk.vajhoej.record.ExtEndian
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum dk.vajhoej.record.FieldType
Returns the enum constant of this type with the specified name.
values() - Static method in enum dk.vajhoej.record.Alignment
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum dk.vajhoej.record.Endian
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum dk.vajhoej.record.ExtEndian
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum dk.vajhoej.record.FieldType
Returns an array containing the constants of this enum type, in the order they are declared.
VAXFloatUtil - Class in dk.vajhoej.record
Class VAXFloatUtil converts between VAX floating point and IEEE floating point.
VAXFloatUtil() - Constructor for class dk.vajhoej.record.VAXFloatUtil
 

W

workOn(ByteBuffer) - Method in class dk.vajhoej.record.CompositFastStructWriter
 
workOn(ByteBuffer) - Method in interface dk.vajhoej.record.FastStructWriter
Work on byte buffer.
write(Object) - Method in class dk.vajhoej.record.CompositFastStructWriter
 
write(T) - Method in interface dk.vajhoej.record.FastStructWriter
Write.
write(Object) - Method in class dk.vajhoej.record.StructWriter
Write.
write(Object, LengthProvider) - Method in class dk.vajhoej.record.StructWriter
Write.
write(Object, LengthProvider2) - Method in class dk.vajhoej.record.StructWriter
Write.
write(Object, InfoProvider) - Method in class dk.vajhoej.record.StructWriter
Write.
write8(Object, LengthFunction) - Method in class dk.vajhoej.record8.StructWriter8
Write.
write8(Object, LengthFunction, MaxLengthFunction) - Method in class dk.vajhoej.record8.StructWriter8
Write.
write8(Object, LengthFunction, MaxLengthFunction, ElementsFunction) - Method in class dk.vajhoej.record8.StructWriter8
Write.
writeAll(Class<T>, List<T>) - Static method in class dk.vajhoej.record.Util
Write list of objects into array of struct in byte array.
writeAll(Class<T>, List<T>, OutputStream) - Static method in class dk.vajhoej.record.Util
Write list of objects into array of struct in stream.
writeAll(Class<T>, List<T>, LengthProvider2) - Static method in class dk.vajhoej.record.Util2
Write list of objects into array of struct in byte array.
writeAll(Class<T>, List<T>, OutputStream, LengthProvider2) - Static method in class dk.vajhoej.record.Util2
Write list of objects into array of struct in stream.
writeAll(Class<T>, List<T>, LengthFunction, MaxLengthFunction, ElementsFunction) - Static method in class dk.vajhoej.record8.Util8
Write list of objects into array of struct in byte array.
writeAll(Class<T>, List<T>, OutputStream, LengthFunction, MaxLengthFunction, ElementsFunction) - Static method in class dk.vajhoej.record8.Util8
Write list of objects into array of struct in stream.

Z

ZERO - Static variable in class dk.vajhoej.record.BCDUtil
Zero zone nibble.
A B C D E F G H I L M P R S T U V W Z 
Skip navigation links