Interface Context.RecordFilter
- Enclosing interface:
- Context
public static interface Context.RecordFilter
A filter to limit the records which are exported.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanacceptType(RecordType recordType) Should export records of the given type?booleanacceptValue(ValueType valueType) Should export records with a value of the given type?
-
Method Details
-
acceptType
Should export records of the given type?- Parameters:
recordType- the type of the record.- Returns:
trueif records of this type should be exporter.
-
acceptValue
Should export records with a value of the given type?- Parameters:
valueType- the type of the record value.- Returns:
trueif records with this type of value should be exported.
-