Interface MemberParser<S,​M extends Member<?>>

  • Type Parameters:
    S - The Type of Objects parsable by this parser
    M - The Type of Members returned by this parser

    public interface MemberParser<S,​M extends Member<?>>
    Parses a set of Members from a source Object
    Author:
    Gabriel Selzer
    • Method Detail

      • parse

        List<M> parse​(S source,
                      Type structType)
        parses source for a List of Members, which is then returned
        Parameters:
        source - the Object to parse
        structType - TODO
        Returns:
        a List of Members parsed from source