• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GENERATED SOURCE. DO NOT MODIFY. */
2 // © 2017 and later: Unicode, Inc. and others.
3 // License & terms of use: http://www.unicode.org/copyright.html#License
4 package ohos.global.icu.impl.number.parse;
5 
6 import ohos.global.icu.impl.StringSegment;
7 
8 /**
9  * A Matcher used only for post-process validation, not for consuming characters at runtime.
10  * @hide exposed on OHOS
11  */
12 public abstract class ValidationMatcher implements NumberParseMatcher {
13 
14     @Override
match(StringSegment segment, ParsedNumber result)15     public boolean match(StringSegment segment, ParsedNumber result) {
16         return false;
17     }
18 
19     @Override
smokeTest(StringSegment segment)20     public boolean smokeTest(StringSegment segment) {
21         return false;
22     }
23 
24 }
25