Class CustomParameterParser<T>

java.lang.Object
com.thoughtworks.gauge.execution.parameters.parsers.base.CustomParameterParser<T>
All Implemented Interfaces:
ParameterParser

public abstract class CustomParameterParser<T> extends Object implements ParameterParser
Extension hook for custom parameter parser implementations. An example: Given the following custom model class public class Person { private String name; public Person(String name) { this.name = name; } } One can create a CustomParameterParser like public class PersonGaugeParser extends CustomParameterParser {