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

com.socialbakers.config.generator.ParamValueSeparator Maven / Gradle / Ivy

Go to download

Maven plugin for small application config support. Allows you to define configuration for your application at one place and generate config files and java class. Configuration can be instantiate by var args, file config or environment variables or combination of all. TODO: - boolean opts -- is/get -- option without value true - make def enum public - static instance to access from everywhere without pass an instance

The newest version!
package com.socialbakers.config.generator;

public enum ParamValueSeparator {

	NO_SEPARATOR(""), SPACE_SEPARATOR(" "), EQUAL_SEPARATOR("="), ;

	private String separator;

	private ParamValueSeparator(String separator) {
		this.separator = separator;
	}

	public String getSeparator() {
		return separator;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy