All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yin.flags.Parser Maven / Gradle / Ivy

Go to download

Easy to use command-line parser, which enables you to define cmdline flags directly the class they are used in.

There is a newer version: 0.3.0-beta2
Show newest version
package com.github.yin.flags;

import java.util.List;
import java.util.Map;

/**
 * Serves as interface for different flag parser implementations.
 */
@FunctionalInterface
public interface Parser {
    List parse(T args);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy