package net.knarcraft.ffmpegconverter.parser; import net.knarcraft.ffmpegconverter.utility.ListUtil; /** * A class representing a command argument */ public class ConverterArgument { private final String name; private final char shorthand; private final boolean valueRequired; private final ConverterArgumentValueType valueType; /** * Instantiates a converter argument * * @param name
The name of the argument which users has to type.
* @param shorthandA single character value for using the command.
* @param valueRequiredWhether the argument must be followed by a valid value.
* @param valueTypeThe type of value the argument requires.
*/ public ConverterArgument(String name, char shorthand, boolean valueRequired, ConverterArgumentValueType valueType) { this.name = name; this.shorthand = shorthand; this.valueRequired = valueRequired; this.valueType = valueType; } /** * Gets the argument name * * @returnThe argument name.
*/ public String getName() { return name; } /** * Gets the argument shorthand * * @returnThe argument shorthand
*/ public char getShorthand() { return shorthand; } /** * Gets whether the argument requires a value * * @returnWhether the argument requires a value.
*/ public boolean isValueRequired() { return valueRequired; } /** * Tests whether the given value is valid for this converter argument * * @param valueThe value to test.
* @returnTrue if the argument is valid. False otherwise.
*/ public boolean testArgumentValue(String value) { if (value.isEmpty()) { return !valueRequired; } if (valueRequired && value.startsWith("-")) { return false; } switch (valueType) { case BOOLEAN: String lower = value.toLowerCase(); return lower.equals("true") || lower.equals("false"); case COMMA_SEPARATED_LIST: ListUtil.getListFromCommaSeparatedString(value); return true; case STRING: return true; case INT: try { Integer.parseInt(value); return true; } catch (NumberFormatException exception) { return false; } } return false; } }