com.electronwill.nightconfig.hocon.CommentStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hocon_android Show documentation
Show all versions of hocon_android Show documentation
Powerful, easy-to-use and multi-language configuration library for the JVM - hocon_android module
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