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 class
AbstractStrictCheckSizeFileCompleteCheck
Ancestor 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.class
AbstractStrictFileCompleteCheck
Ancestor for file checks thatclass
BMP
Checks whether the BMP file has sufficient bytes according to its header.
See also:
https://en.wikipedia.org/wiki/BMP_file_format#File_structure
class
JPEG
Checks whether the JPEG file ends with bytes FFD9 (EOF for JPEGs).
See also:
http://en.wikipedia.org/wiki/JPEG#Syntax_and_structure
class
JSON
Checks whether the JSON can be parsed.class
NoCheck
Performs no check, always states that file is complete.class
PNG
Checks 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
class
XML
Checks 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 AbstractFileCompleteCheck
FileIncomplete. m_Check
the check to use.Methods in adams.core.io.fileuse that return AbstractFileCompleteCheck Modifier and Type Method Description AbstractFileCompleteCheck
FileIncomplete. 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 void
FileIncomplete. 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 AbstractFileCompleteCheck
BytesComplete. m_Check
the check scheme to use.protected AbstractFileCompleteCheck
FileComplete. m_Check
the check scheme to use.Methods in adams.flow.condition.bool that return AbstractFileCompleteCheck Modifier and Type Method Description AbstractFileCompleteCheck
BytesComplete. getCheck()
Returns the 'in use' check scheme.AbstractFileCompleteCheck
FileComplete. getCheck()
Returns the 'in use' check scheme.Methods in adams.flow.condition.bool with parameters of type AbstractFileCompleteCheck Modifier and Type Method Description void
BytesComplete. setCheck(AbstractFileCompleteCheck value)
Sets the 'in use' check scheme.void
FileComplete. setCheck(AbstractFileCompleteCheck value)
Sets the 'in use' check scheme.
-