com.ibm.icu.impl.number.parse.PermilleMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icu4j Show documentation
Show all versions of icu4j Show documentation
International Component for Unicode for Java (ICU4J) is a mature, widely used Java library
providing Unicode and Globalization support
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
package com.ibm.icu.impl.number.parse;
import com.ibm.icu.impl.StaticUnicodeSets;
import com.ibm.icu.impl.StringSegment;
import com.ibm.icu.text.DecimalFormatSymbols;
/**
* @author sffc
*
*/
public class PermilleMatcher extends SymbolMatcher {
private static final PermilleMatcher DEFAULT = new PermilleMatcher();
public static PermilleMatcher getInstance(DecimalFormatSymbols symbols) {
String symbolString = symbols.getPerMillString();
if (DEFAULT.uniSet.contains(symbolString)) {
return DEFAULT;
} else {
return new PermilleMatcher(symbolString);
}
}
private PermilleMatcher(String symbolString) {
super(symbolString, DEFAULT.uniSet);
}
private PermilleMatcher() {
super(StaticUnicodeSets.Key.PERMILLE_SIGN);
}
@Override
protected boolean isDisabled(ParsedNumber result) {
return 0 != (result.flags & ParsedNumber.FLAG_PERMILLE);
}
@Override
protected void accept(StringSegment segment, ParsedNumber result) {
result.flags |= ParsedNumber.FLAG_PERMILLE;
result.setCharsConsumed(segment);
}
@Override
public String toString() {
return "";
}
}