Package manifold.strings.api
Interface ITemplateProcessorGate
-
public interface ITemplateProcessorGateAn SPI to gate template processing. Implement this interface to prevent Java classes from string template processing. This is especially useful for use-cases involving generated code you do not control.- See Also:
DisableStringLiteralTemplates
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexclude(String typeName)Return true if thetypeNameshould be excluded from string template processing
-
-
-
Method Detail
-
exclude
boolean exclude(String typeName)
Return true if thetypeNameshould be excluded from string template processing- Parameters:
typeName- A fully qualified type name.- Returns:
trueto excludetypeNamefrom string template processing, otherwisefalse.
-
-