Class AbstractStyleNameConverter

All Implemented Interfaces:
PatternConverter
Direct Known Subclasses:
AbstractStyleNameConverter.Black, AbstractStyleNameConverter.Blue, AbstractStyleNameConverter.Cyan, AbstractStyleNameConverter.Green, AbstractStyleNameConverter.Magenta, AbstractStyleNameConverter.Red, AbstractStyleNameConverter.White, AbstractStyleNameConverter.Yellow

public abstract class AbstractStyleNameConverter extends LogEventPatternConverter
Style pattern converter. Adds ANSI color styling to the result of the enclosed pattern.
  • Field Details

  • Constructor Details

    • AbstractStyleNameConverter

      protected AbstractStyleNameConverter(String name, List<PatternFormatter> formatters, String styling)
      Constructs the converter.
      Parameters:
      formatters - The PatternFormatters to generate the text to manipulate.
      styling - The styling that should encapsulate the pattern.
  • Method Details

    • newInstance

      protected static <T extends AbstractStyleNameConverter> T newInstance(Class<T> asnConverterClass, String name, Configuration config, String[] options)
      Gets an instance of the class (called via reflection).
      Parameters:
      config - The current Configuration.
      options - The pattern options, may be null. If the first element is "short", only the first line of the throwable will be formatted.
      Returns:
      new instance of class or null
    • toPatternFormatterList

      private static List<PatternFormatter> toPatternFormatterList(Configuration config, String[] options)
      Creates a list of PatternFormatter from the given configuration and options or null if no pattern is supplied.
      Parameters:
      config - A configuration.
      options - pattern options.
      Returns:
      a list of PatternFormatter from the given configuration and options or null if no pattern is supplied.
    • format

      public void format(LogEvent event, StringBuilder toAppendTo)
      Formats an event into a string buffer.
      Specified by:
      format in class LogEventPatternConverter
      Parameters:
      event - event to format, may not be null.
      toAppendTo - string buffer to which the formatted event will be appended. May not be null.