org.unlaxer.jaddress.parser.SeparatorKind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of japanese-address-parser Show documentation
Show all versions of japanese-address-parser Show documentation
a simplejapanese address parser
The newest version!
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