com.electronwill.nightconfig.hocon.KeyValueSeparatorStyle 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;
/**
* @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