Is there any class provided in the Java standard API that allows file structure elements to be described, like headers and records, according to the data types that are found in those elements, and automatically read them in? I have a feeling I'm going to be writing my own class for this... but I would like to do something like so:
// PSEUDO CODE
header.setStructure("integer:tag:0x4F3C", "integer:version", "integer:numrecords");
record.setStructure("integer:numpoints", "integers:point:var->numpoints");
myHeader = file.read(header);
myRecord = file.read(record);