Interface MIBTreeFormatter
- All Known Implementing Classes:
MarkdownMIBTreeFormatter
public interface MIBTreeFormatter
Formats a
MIBTree into a human readable representation.- Since:
- 3.9.2
- Version:
- 3.9.2
- Author:
- SNMP4J.org
-
Method Summary
Modifier and TypeMethodDescriptionFormats the given MIB tree and returns the result as a string.voidformat(MIBTree tree, Appendable out) Formats the given MIB tree and appends the result to the suppliedAppendable.
-
Method Details
-
format
-
format
Formats the given MIB tree and appends the result to the suppliedAppendable.- Parameters:
tree- the MIB tree to format.out- the target to append the formatted representation to.- Throws:
IOException- if appending tooutfails.
-