com.github.skjolber.jackson.jsh.SyntaxHighlighterArrayIndenter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-syntax-highlight Show documentation
Show all versions of jackson-syntax-highlight Show documentation
ANSI syntax highlighting for Jackson output
package com.github.skjolber.jackson.jsh;
import java.io.IOException;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter;
public class SyntaxHighlighterArrayIndenter extends FixedSpaceIndenter {
private static final long serialVersionUID = 1L;
protected SyntaxHighlighter highligheter;
protected String valueColor;
public SyntaxHighlighterArrayIndenter() {
super();
}
public SyntaxHighlighterArrayIndenter(SyntaxHighlighter highligheter) {
this.highligheter = highligheter;
}
@Override
public void writeIndentation(JsonGenerator jg, int level) throws IOException {
String color = highligheter.forWhitespace();
jg.writeRaw(color);
super.writeIndentation(jg, level);
if(valueColor != null) {
jg.writeRaw(valueColor);
}
}
/**
* Set the color which is set after the indentation.
*
* @param color color to set
*/
public void setValueColor(String color) {
this.valueColor = color;
}
public void clearValueColor() {
this.valueColor = null;
}
}