Package com.io7m.smfj.format.text
Interface SMFTBodySectionParserType
-
- All Known Implementing Classes:
SMFTV1BodySectionParserMetadata,SMFTV1BodySectionParserTriangles,SMFTV1BodySectionParserVerticesNonInterleaved
public interface SMFTBodySectionParserTypeThe type of body section parsers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringname()SMFTParsingStatusparse(SMFParserEventsBodyType receiver, java.util.List<java.lang.String> line)Parse the section, delivering events toreceiver.
-
-
-
Method Detail
-
name
java.lang.String name()
- Returns:
- The name of the body section
-
parse
SMFTParsingStatus parse(SMFParserEventsBodyType receiver, java.util.List<java.lang.String> line) throws java.io.IOException
Parse the section, delivering events toreceiver.- Parameters:
receiver- The event receiverline- The current line- Returns:
- The result of parsing
- Throws:
java.io.IOException- On I/O errors
-
-