Class MacroLibGroovyMethods

java.lang.Object
org.apache.groovy.macrolib.MacroLibGroovyMethods

public final class MacroLibGroovyMethods extends Object
Macro library helpers for string and named-value expansion.
Since:
2.5.0
  • Method Details

    • SV

      public static Expression SV(MacroContext ctx, Expression... exps)
      Builds a GString expression that labels each supplied expression with its source text.
      Parameters:
      ctx - the current macro context
      exps - the expressions to interpolate
      Returns:
      the labeled GString expression
    • SV

      public static GString SV(Object self, Object... args)
      Parameters:
      self - the receiver
      args - the interpolated values
      Returns:
      never returns normally
    • SVI

      public static Expression SVI(MacroContext ctx, Expression... exps)
      Builds a GString expression that labels each supplied expression with its inspected value.
      Parameters:
      ctx - the current macro context
      exps - the expressions to inspect
      Returns:
      the labeled GString expression
    • SVI

      public static GString SVI(Object self, Object... args)
      Parameters:
      self - the receiver
      args - the interpolated values
      Returns:
      never returns normally
    • SVD

      public static Expression SVD(MacroContext ctx, Expression... exps)
      Builds a GString expression that labels each supplied expression with its dumped value.
      Parameters:
      ctx - the current macro context
      exps - the expressions to dump
      Returns:
      the labeled GString expression
    • SVD

      public static GString SVD(Object self, Object... args)
      Parameters:
      self - the receiver
      args - the interpolated values
      Returns:
      never returns normally
    • NV

      public static Expression NV(MacroContext ctx, Expression exp)
      Builds a NamedValue expression from the supplied expression.
      Parameters:
      ctx - the current macro context
      exp - the expression to wrap
      Returns:
      the named-value expression
    • NV

      public static <T> NamedValue<T> NV(Object self, T arg)
      Type Parameters:
      T - the value type
      Parameters:
      self - the receiver
      arg - the runtime value
      Returns:
      never returns normally
    • NVL

      public static Expression NVL(MacroContext ctx, Expression... exps)
      Builds a list of NamedValue expressions from the supplied expressions.
      Parameters:
      ctx - the current macro context
      exps - the expressions to wrap
      Returns:
      the list expression
    • NVL

      public static <T> List<NamedValue<T>> NVL(Object self, T... args)
      Type Parameters:
      T - the value type
      Parameters:
      self - the receiver
      args - the runtime values
      Returns:
      never returns normally