Package

com.codacy.plugins

parser

Permalink

package parser

Visibility
  1. Public
  2. All

Type Members

  1. class BinaryDockerToolOutputParser[T] extends ToolOutputParser[T]

    Permalink

    This class is an implementation of a parser from String to a specific JSON structure definition The BinaryDockerToolOutputParser is a specific implementation that allows parsing for output that isn't necessarily separated by the default separator for the output of tool dockers (This specific implementation is necessary because com.codacy.plugins.runners.BinaryDockerRunner uses com.codacy.plugins.utils.CommandRunner to execute and get output from tool dockers.

    This class is an implementation of a parser from String to a specific JSON structure definition The BinaryDockerToolOutputParser is a specific implementation that allows parsing for output that isn't necessarily separated by the default separator for the output of tool dockers (This specific implementation is necessary because com.codacy.plugins.runners.BinaryDockerRunner uses com.codacy.plugins.utils.CommandRunner to execute and get output from tool dockers. This output is automatically split by '\n' char although this might not be the correct delimiter for each result that is outputed, but it still may be used as content of results)

    T

    the format to which the json should deserialize to

  2. class ToolOutputParser[T] extends AnyRef

    Permalink

    This class is an implementation of a parser from String to a specific JSON structure of a result of type T

    This class is an implementation of a parser from String to a specific JSON structure of a result of type T

    T

    the format to which the json should deserialize to

Ungrouped