Interface that defines objects that can produce indentation used to separate object entries and array values. Indentation in this context just means insertion of white space, independent of whether linefeeds are output.
| 11 | * linefeeds are output. |
| 12 | */ |
| 13 | public interface Indenter |
| 14 | { |
| 15 | public void writeIndentation(JsonGenerator jg, int level) |
| 16 | throws IOException, JsonGenerationException; |
| 17 | |
| 18 | /** |
| 19 | * @return True if indenter is considered inline (does not add linefeeds), |
| 20 | * false otherwise |
| 21 | */ |
| 22 | public boolean isInline(); |
| 23 | } |
no outgoing calls
no test coverage detected