com.botronsoft.cmj.spitools.dsl.MultiValueArgumentDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configuration-manager-spi-tools Show documentation
Show all versions of configuration-manager-spi-tools Show documentation
Configuration Manager Service Provider Interface Tools
package com.botronsoft.cmj.spitools.dsl;
import com.botronsoft.cmj.spi.annotations.PublicApi;
/**
* An {@link ArgumentDescriptor} extension for multi-value arguments. Multi-value arguments hold values separated by a separator which must
* be declared using this interface.
*/
@PublicApi
public interface MultiValueArgumentDescriptor extends ArgumentDescriptor {
/**
* Describes the value separator.
*
* @param separator
* the value separator.
* @return itself.
*/
MultiValueArgumentDescriptor withSeparator(String separator);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy