com.ibm.icu.impl.number.parse.InfinityMatcher 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#License
package com.ibm.icu.impl.number.parse;
import static com.ibm.icu.impl.number.parse.ParsingUtils.safeContains;
import com.ibm.icu.impl.StaticUnicodeSets;
import com.ibm.icu.impl.StringSegment;
import com.ibm.icu.text.DecimalFormatSymbols;
/**
* @author sffc
*
*/
public class InfinityMatcher extends SymbolMatcher {
private static final InfinityMatcher DEFAULT = new InfinityMatcher();
public static InfinityMatcher getInstance(DecimalFormatSymbols symbols) {
String symbolString = symbols.getInfinity();
if (safeContains(DEFAULT.uniSet, symbolString)) {
return DEFAULT;
} else {
return new InfinityMatcher(symbolString);
}
}
private InfinityMatcher(String symbolString) {
super(symbolString, DEFAULT.uniSet);
}
private InfinityMatcher() {
super(StaticUnicodeSets.Key.INFINITY_SIGN);
}
@Override
protected boolean isDisabled(ParsedNumber result) {
return 0 != (result.flags & ParsedNumber.FLAG_INFINITY);
}
@Override
protected void accept(StringSegment segment, ParsedNumber result) {
result.flags |= ParsedNumber.FLAG_INFINITY;
result.setCharsConsumed(segment);
}
@Override
public String toString() {
return "";
}
}