Module org.snmp4j.agent
Package org.snmp4j.agent.mo
Interface MOTableRowFilter<R extends MOTableRow>
-
- All Known Implementing Classes:
RowStatus.ActiveRowsFilter,RowStatus.RowStatusFilter
public interface MOTableRowFilter<R extends MOTableRow>TheMOTableRowFilterinterface can be used to filter rows. TheRowStatus.ActiveRowsFilterclass, for example, can be used to filter only active rows.- Version:
- 1.0
- Author:
- Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanpassesFilter(R row)Checks whether the supplied row passes the filter criteria implemented by this row filter.
-
-
-
Method Detail
-
passesFilter
boolean passesFilter(R row)
Checks whether the supplied row passes the filter criteria implemented by this row filter.- Parameters:
row- aMOTableRowinstance.- Returns:
trueif the row passes the filter orfalseif not.
-
-