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

com.electronwill.nightconfig.hocon.CommentStyle 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;

/**
 * A style of HOCON comment.
 *
 * @author TheElectronWill
 */
public enum CommentStyle {
	/**
	 * # prefix
	 */
	HASH('#'),
	/**
	 * // prefix
	 */
	SLASH('/', '/');

	public final char[] chars;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy