Files
secondo/UserInterfaces/InteractiveQueryEditor/util/domain/enums/Delimiter.java

22 lines
337 B
Java
Raw Normal View History

2026-01-23 17:03:45 +08:00
package util.domain.enums;
/**
* Used to identify special characters which separate
* parameters or commands.
* @author D.Merle
*/
public enum Delimiter {
COMMA(","),
COLON(":"),
SEMICOLON(";");
private String text;
private Delimiter(final String text) {
this.text = text;
}
public String getText() {
return text;
}
}