Interface StringProcessor

All Known Implementing Classes:
Camelbacker, CharReplacer, ConstantNameCreator, RemoveUnusedImportsProcessor, TokenReplacer, UnixLinefeedProcessor, WrapReservedJavaWords

public interface StringProcessor
A processor which takes a String as input and generates a String as output.
  • Method Summary

    Modifier and Type
    Method
    Description
    process(String toProcess)
    Generates another String from the passed String.
  • Method Details

    • process

      String process(String toProcess)
      Generates another String from the passed String.
      Parameters:
      toProcess - the String to process.
      Returns:
      the processed String.