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

com.electronwill.nightconfig.hocon.KeyValueSeparatorStyle Maven / Gradle / Ivy

Go to download

Powerful, easy-to-use and multi-language configuration library for the JVM - hocon_android module

There is a newer version: 3.6.6
Show newest version
package com.electronwill.nightconfig.hocon;

/**
 * @author TheElectronWill
 */
public enum KeyValueSeparatorStyle {
	/**
	 * The : character.
	 */
	COLON(':', ' '),
	/**
	 * The = character.
	 */
	EQUALS(' ', '=', ' ');

	public final char[] chars;

	KeyValueSeparatorStyle(char... chars) {
		this.chars = chars;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy