Interface Context.RecordFilter
-
- Enclosing interface:
- Context
public static interface Context.RecordFilterA filter to limit the records which are exported.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanacceptType(RecordType recordType)Should export records of the given type?booleanacceptValue(ValueType valueType)Should export records with a value of the given type?
-
-
-
Method Detail
-
acceptType
boolean acceptType(RecordType recordType)
Should export records of the given type?- Parameters:
recordType- the type of the record.- Returns:
trueif 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:
trueif records with this type of value should be exported.
-
-