blob: 0b3061fe1126c40e50a0d09069c422bfd4f67239 [file] [log] [blame]
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
package com.ibm.icu.impl.number.parse;
/**
* @author sffc
*
*/
public class RequireAffixValidator extends ValidationMatcher {
@Override
public void postProcess(ParsedNumber result) {
if (result.prefix == null || result.suffix == null) {
// We saw a prefix or a suffix but not both. Fail the parse.
result.flags |= ParsedNumber.FLAG_FAIL;
}
}
@Override
public String toString() {
return "<RequireAffix>";
}
}