Uses of Class
dev.nipafx.args.ArgsParseException

  • Uses of ArgsParseException in dev.nipafx.args

    Methods in dev.nipafx.args that throw ArgsParseException
    Modifier and Type
    Method
    Description
    static <ARGS_TYPE_1, ARGS_TYPE_2>
    Parsed2<ARGS_TYPE_1,ARGS_TYPE_2>
    Args.parse(String[] argStrings, Class<ARGS_TYPE_1> type1, Class<ARGS_TYPE_2> type2)
    Parses the specified string array to create instances of the specified types.
    static <ARGS_TYPE_1, ARGS_TYPE_2, ARGS_TYPE_3>
    Parsed3<ARGS_TYPE_1,ARGS_TYPE_2,ARGS_TYPE_3>
    Args.parse(String[] argStrings, Class<ARGS_TYPE_1> type1, Class<ARGS_TYPE_2> type2, Class<ARGS_TYPE_3> type3)
    Parses the specified string array to create instances of the specified types.
    static <ARGS_TYPE>
    ARGS_TYPE
    Args.parse(String[] argStrings, Class<ARGS_TYPE> type)
    Parses the specified string array to create an instance of the specified type.