Class EngineBuilder


  • public final class EngineBuilder
    extends Object
    Builder for Engine.

    If using Qute "standalone" you'll need to create an instance of the Engine first:

     Engine engine = Engine.builder()
             // add the default set of value resolvers and section helpers
             .addDefaults()
             .build();
     
    This construct is not thread-safe and should not be reused.