Class 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 {