Interface CustomTypeMetadata


public interface CustomTypeMetadata
The custom step/parser metadata consists of the name of the custom step/parser, description, major version, minor version, patch version, author name, and license type.

One of the 3 main builders required for a custom step/parser:

  1. StepConfigurationBuilder
  2. StepProcessorBuilder
  3. CustomTypeMetadataBuilder
Since:
2.0.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the description of the custom step/parser
    Returns the name of the custom step/parser author
    Returns the license type associated with the custom step/parser
    Returns the name of the custom step/parser.
    Returns the custom type version of the custom step/parser
  • Method Details

    • getName

      String getName()
      Returns the name of the custom step/parser.
      Returns:
      Name of the custom step/parser
    • getDescription

      String getDescription()
      Returns the description of the custom step/parser
      Returns:
      Description of the custom step/parser
    • getVersion

      CustomTypeVersion getVersion()
      Returns the custom type version of the custom step/parser
      Returns:
      CustomTypeVersion of the custom step/parser
    • getDeveloper

      String getDeveloper()
      Returns the name of the custom step/parser author
      Returns:
      Name of the custom step/parser author
    • getLicense

      String getLicense()
      Returns the license type associated with the custom step/parser
      Returns:
      License type associated with the custom step/parser