Interface Profile.ParameterVisitor<R,​P,​E extends Exception>

  • Type Parameters:
    R - The return type of this visitor's methods. Use Void for visitors that do not need to return results.
    P - The type of the additional parameter to this visitor's methods. Use Void for visitors that do not need an additional parameter.
    E - The type of the exception thrown by the visitor method if it fails, or NeverThrowsException if the visitor cannot fail.
    Enclosing class:
    Profile

    public static interface Profile.ParameterVisitor<R,​P,​E extends Exception>
    A visitor of parameters, in the style of the visitor design pattern.