Package org.apache.poi.util
Interface GenericRecordXmlWriter.GenericRecordHandler
-
- Enclosing class:
- GenericRecordXmlWriter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface protected static interface GenericRecordXmlWriter.GenericRecordHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
print(GenericRecordXmlWriter record, String name, Object object)
Handler method
-
-
-
Method Detail
-
print
boolean print(GenericRecordXmlWriter record, String name, Object object)
Handler method- Parameters:
record
- the parent record, applied via instance method referencename
- the name of the propertyobject
- the value of the property- Returns:
true
, if the element was handled and output produced, The provided methods can be overridden and an implementation can returnfalse
, if the element hasn't been written to the stream
-
-