Module org.snmp4j.agent
Package org.snmp4j.agent.mo.snmp
Class RowStatus.RowStatusFilter<R extends MOTableRow>
java.lang.Object
org.snmp4j.agent.mo.snmp.RowStatus.RowStatusFilter<R>
- All Implemented Interfaces:
MOTableRowFilter<R>
- Enclosing class:
RowStatus<R extends MOTableRow>
public static class RowStatus.RowStatusFilter<R extends MOTableRow>
extends Object
implements MOTableRowFilter<R>
The
RowStatusFilter is a MOTableRowFilter that
returns only those rows that have a status that equals one of those provided during creation of the filter.- Since:
- 3.0
- Version:
- 3.0
- Author:
- Frank Fock
-
Constructor Summary
ConstructorsConstructorDescriptionRowStatusFilter(int rowStatusColumnIndex, Set<RowStatus.RowStatusEnum> passingStatusSet) -
Method Summary
Modifier and TypeMethodDescriptionbooleanpassesFilter(R row) Checks whether the supplied row passes the filter criteria implemented by this row filter.
-
Constructor Details
-
RowStatusFilter
-
-
Method Details
-
passesFilter
Description copied from interface:MOTableRowFilterChecks whether the supplied row passes the filter criteria implemented by this row filter.- Specified by:
passesFilterin interfaceMOTableRowFilter<R extends MOTableRow>- Parameters:
row- aMOTableRowinstance.- Returns:
trueif the row passes the filter orfalseif not.
-