Follow the links below to browse sample Javadoc for MJ classes and tools, including the MJ Runtime Library.
Defines a life cycle for building a binary find key object using a field intercept pattern.
Classes and Interfaces | |
IBinaryFindKeyBuilder | Defines a life cycle for building a binary find key object using a field intercept pattern. |
public interface com.arsi.mj.maprpt.entity.etlgen.bnfkey.IBinaryFindKeyBuilder
Methods |
Get the binary find key object that was built (and is assumed to be complete),
typically invoked after all fields in data row have been processed.
public java.lang.Comparable getKeyObject()
|
Reset building of key object, typically called when a new row of data is seen.public void reset()
|
Intercept a field value that is being processed and, if the field is part of the
binary find key, set the field value into the key object being built.
public void setKeyFieldIfApplicable(java.lang.Object aFieldValue, com.arsi.mj.maprpt.entity.handler.AnnotatedColumnDef aColdef, int aMapperLineNumber)
|