com.carrotsearch.console.jcommander.validators.NoValueValidator Maven / Gradle / Ivy
/*
* console-tools
*
* Copyright (C) 2019, Carrot Search s.c.
* All rights reserved.
*/
package com.carrotsearch.console.jcommander.validators;
import com.carrotsearch.console.jcommander.IValueValidator;
import com.carrotsearch.console.jcommander.ParameterException;
/**
* This is the default value of the validateValueWith attribute.
*
* @author Cedric Beust
*/
public class NoValueValidator implements IValueValidator {
public void validate(String parameterName, T parameterValue) throws ParameterException {}
}