org.memoeslink.Separator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helper Show documentation
Show all versions of helper Show documentation
A Java library that provides utility to several classes.
The newest version!
package org.memoeslink;
public enum Separator {
HYPHEN('-'),
TILDE('~'),
UNDERSCORE('_'),
DOT('.'),
COMMA(','),
SPACE(' ');
private final char character;
private Separator(char character) {
this.character = character;
}
public char getCharacter() {
return character;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy