com.ibm.icu.impl.number.parse.RequireNumberValidator 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
The newest version!
// © 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 RequireNumberValidator extends ValidationMatcher {
@Override
public void postProcess(ParsedNumber result) {
// Require that a number is matched.
if (!result.seenNumber()) {
result.flags |= ParsedNumber.FLAG_FAIL;
}
}
@Override
public String toString() {
return "";
}
}