
com.github.yin.flags.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-flags Show documentation
Show all versions of java-flags Show documentation
Easy to use command-line parser, which enables you to
define cmdline flags directly the class they are used in.
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