Uses of Class
adams.core.io.filecomplete.AbstractFileCompleteCheck
-
Packages that use AbstractFileCompleteCheck Package Description adams.core.io.filecomplete adams.core.io.fileuse adams.flow.condition.bool -
-
Uses of AbstractFileCompleteCheck in adams.core.io.filecomplete
Subclasses of AbstractFileCompleteCheck in adams.core.io.filecomplete Modifier and Type Class Description classAbstractStrictCheckSizeFileCompleteCheckAncestor for checks that look for EOF markers that can limit the number of bytes to read from the end of the file used to look for the EOF marker.classAbstractStrictFileCompleteCheckAncestor for file checks thatclassBMPChecks whether the BMP file has sufficient bytes according to its header.
See also:
https://en.wikipedia.org/wiki/BMP_file_format#File_structure
classJPEGChecks whether the JPEG file ends with bytes FFD9 (EOF for JPEGs).
See also:
http://en.wikipedia.org/wiki/JPEG#Syntax_and_structure
classJSONChecks whether the JSON can be parsed.classNoCheckPerforms no check, always states that file is complete.classPNGChecks whether the PNG file ends with bytes IEND (EOF for PNGs).
See also:
https://en.wikipedia.org/wiki/Portable_Network_Graphics#Critical_chunks
http://www.libpng.org/pub/png/spec/1.2/PNG-Structure.html#Chunk-layout
http://www.libpng.org/pub/png/spec/1.2/PNG-Chunks.html#C.IEND
classXMLChecks whether the XML can be parsed. -
Uses of AbstractFileCompleteCheck in adams.core.io.fileuse
Fields in adams.core.io.fileuse declared as AbstractFileCompleteCheck Modifier and Type Field Description protected AbstractFileCompleteCheckFileIncomplete. m_Checkthe check to use.Methods in adams.core.io.fileuse that return AbstractFileCompleteCheck Modifier and Type Method Description AbstractFileCompleteCheckFileIncomplete. getCheck()Returns the file check to use for checking the completeness.Methods in adams.core.io.fileuse with parameters of type AbstractFileCompleteCheck Modifier and Type Method Description voidFileIncomplete. setCheck(AbstractFileCompleteCheck value)Sets the file check to use for checking the completeness. -
Uses of AbstractFileCompleteCheck in adams.flow.condition.bool
Fields in adams.flow.condition.bool declared as AbstractFileCompleteCheck Modifier and Type Field Description protected AbstractFileCompleteCheckBytesComplete. m_Checkthe check scheme to use.protected AbstractFileCompleteCheckFileComplete. m_Checkthe check scheme to use.Methods in adams.flow.condition.bool that return AbstractFileCompleteCheck Modifier and Type Method Description AbstractFileCompleteCheckBytesComplete. getCheck()Returns the 'in use' check scheme.AbstractFileCompleteCheckFileComplete. getCheck()Returns the 'in use' check scheme.Methods in adams.flow.condition.bool with parameters of type AbstractFileCompleteCheck Modifier and Type Method Description voidBytesComplete. setCheck(AbstractFileCompleteCheck value)Sets the 'in use' check scheme.voidFileComplete. setCheck(AbstractFileCompleteCheck value)Sets the 'in use' check scheme.
-