blob: 399e156c6bf466dfd9e7a538d52a31aa56c2dc96 [file] [log] [blame]
// © 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 com.ibm.icu.impl.StringSegment;
/**
* A Matcher used only for post-process validation, not for consuming characters at runtime.
*/
public abstract class ValidationMatcher implements NumberParseMatcher {
@Override
public boolean match(StringSegment segment, ParsedNumber result) {
return false;
}
@Override
public boolean smokeTest(StringSegment segment) {
return false;
}
}