Interface Group
-
public interface Group
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.math.BigDecimal
getGroupId()
Allow to retuen the id of the groupjava.lang.String
getGroupLabel()
Allows to return the label of a groupRecordIterable
getMatches()
Allows to return records that have been identified as matchesRecordIterable
getSuspects()
Allows to return records that have been identified as suspectscom.onwbp.adaptation.AdaptationTable
getTable()
Allows to return an EBX table
-
-
-
Method Detail
-
getTable
com.onwbp.adaptation.AdaptationTable getTable()
Allows to return an EBX table
- Returns:
- an EBX table
-
getMatches
RecordIterable getMatches()
Allows to return records that have been identified as matches
- Returns:
- the matched records
-
getSuspects
RecordIterable getSuspects()
Allows to return records that have been identified as suspects
- Returns:
- the suspected records
-
getGroupId
java.math.BigDecimal getGroupId()
Allow to retuen the id of the group
- Returns:
- the group id
-
getGroupLabel
java.lang.String getGroupLabel()
Allows to return the label of a group
- Returns:
- the label of a group
-
-