org.unlaxer.jaddress.parser.SeparatorKind Maven / Gradle / Ivy
package org.unlaxer.jaddress.parser;
public enum SeparatorKind{
terminator("文字列の終端、開始端"),
whiteSpace("空白など"),
domainSpecificSeparator("町名などの文字列"),
generalSeparator("一般的な区切り文字"),
characterKind("ChracterKindでの変化で区切る"),
;
String explain;
private SeparatorKind(String explain) {
this.explain = explain;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy