Interface Context.RecordFilter

Enclosing interface:
Context

public static interface Context.RecordFilter
A filter to limit the records which are exported.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    acceptType(RecordType recordType)
    Should export records of the given type?
    boolean
    Should export records with a value of the given type?
  • Method Details

    • acceptType

      boolean acceptType(RecordType recordType)
      Should export records of the given type?
      Parameters:
      recordType - the type of the record.
      Returns:
      true if records of this type should be exporter.
    • acceptValue

      boolean acceptValue(ValueType valueType)
      Should export records with a value of the given type?
      Parameters:
      valueType - the type of the record value.
      Returns:
      true if records with this type of value should be exported.