Package com.comphenix.protocol.reflect
Interface PrettyPrinter.ObjectPrinter
- Enclosing class:
PrettyPrinter
public static interface PrettyPrinter.ObjectPrinter
Represents a generic object printer.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbooleanprint(StringBuilder output, Object value) Print the content of the given object.
-
Field Details
-
DEFAULT
-
-
Method Details
-
print
Print the content of the given object.Return FALSE in order for let the default printer take over.
- Parameters:
output- - where to print the output.value- - the value to print, may be NULL.- Returns:
- TRUE if we processed the value and added to the output, FALSE otherwise.
-