All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.jinjava.tree.parse.WhitespaceControlParser Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy