com.hubspot.jinjava.tree.parse.WhitespaceControlParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jinjava Show documentation
Show all versions of jinjava Show documentation
Jinja templating engine implemented in Java
The newest version!
package com.hubspot.jinjava.tree.parse;
public interface WhitespaceControlParser {
WhitespaceControlParser LENIENT = new LenientWhitespaceControlParser();
WhitespaceControlParser STRICT = new StrictWhitespaceControlParser();
boolean hasLeftTrim(String unwrapped);
String stripLeft(String unwrapped);
boolean hasRightTrim(String unwrapped);
String stripRight(String unwrapped);
}