blob: 71f86b3e3b8a9a013965d6d5fda3eed84f1c0a91 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
package android.icu.impl.number.parse;
import android.icu.impl.StaticUnicodeSets;
import android.icu.impl.StringSegment;
import android.icu.text.DecimalFormatSymbols;
/**
* @author sffc
* @hide Only a subset of ICU is exposed in Android
*
*/
public class InfinityMatcher extends SymbolMatcher {
private static final InfinityMatcher DEFAULT = new InfinityMatcher();
public static InfinityMatcher getInstance(DecimalFormatSymbols symbols) {
String symbolString = symbols.getInfinity();
if (DEFAULT.uniSet.contains(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 "<InfinityMatcher>";
}
}