Class StringTemplateSource

java.lang.Object
com.github.jknack.handlebars.io.AbstractTemplateSource
com.github.jknack.handlebars.io.StringTemplateSource
All Implemented Interfaces:
TemplateSource

public class StringTemplateSource extends AbstractTemplateSource
String implementation of TemplateSource.
Since:
0.11.0
  • Constructor Details

    • StringTemplateSource

      public StringTemplateSource(String filename, String content)
      Creates a new StringTemplateSource.
      Parameters:
      filename - The template's file name. Required.
      content - The template's content. Required.
  • Method Details

    • content

      public String content(Charset charset)
      Description copied from interface: TemplateSource
      The template content.
      Parameters:
      charset - Charset to use.
      Returns:
      The template content.
    • filename

      public String filename()
      Description copied from interface: TemplateSource
      The file's name.
      Returns:
      The file's name.
    • lastModified

      public long lastModified()
      Description copied from interface: TemplateSource
      The last modified date.
      Returns:
      The last modified date.