Movatterモバイル変換


[0]ホーム

URL:


ICU 77.1  77.1
unimatch.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 * Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved.
5 **********************************************************************
6 * Date Name Description
7 * 07/18/01 aliu Creation.
8 **********************************************************************
9 */
10 #ifndef UNIMATCH_H
11 #define UNIMATCH_H
12 
13 #include "unicode/utypes.h"
14 
20 #if U_SHOW_CPLUSPLUS_API
21 
22 U_NAMESPACE_BEGIN
23 
24 classReplaceable;
25 classUnicodeString;
26 classUnicodeSet;
27 
33 enumUMatchDegree {
41 U_MISMATCH,
42 
53 U_PARTIAL_MATCH,
54 
63 U_MATCH
64 };
65 
71 classU_COMMON_APIUnicodeMatcher/* not : public UObject because this is an interface/mixin class */ {
72 
73 public:
78 virtual~UnicodeMatcher();
79 
126 virtualUMatchDegreematches(constReplaceable& text,
127  int32_t& offset,
128  int32_t limit,
129 UBool incremental) = 0;
130 
143 virtualUnicodeString&toPattern(UnicodeString& result,
144 UBool escapeUnprintable =false)const = 0;
145 
153 virtualUBoolmatchesIndexValue(uint8_t v)const = 0;
154 
161 virtualvoidaddMatchSetTo(UnicodeSet& toUnionTo)const = 0;
162 };
163 
164 U_NAMESPACE_END
165 
166 #endif/* U_SHOW_CPLUSPLUS_API */
167 
168 #endif
icu::Replaceable
Replaceable is an abstract base class representing a string of characters that supports the replaceme...
Definition:rep.h:77
icu::UnicodeMatcher
UnicodeMatcher defines a protocol for objects that can match a range of characters in a Replaceable s...
Definition:unimatch.h:71
icu::UnicodeMatcher::toPattern
virtual UnicodeString & toPattern(UnicodeString &result, UBool escapeUnprintable=false) const =0
Returns a string representation of this matcher.
icu::UnicodeMatcher::~UnicodeMatcher
virtual ~UnicodeMatcher()
Destructor.
icu::UnicodeMatcher::matches
virtual UMatchDegree matches(const Replaceable &text, int32_t &offset, int32_t limit, UBool incremental)=0
Return a UMatchDegree value indicating the degree of match for the given text at the given offset.
icu::UnicodeMatcher::addMatchSetTo
virtual void addMatchSetTo(UnicodeSet &toUnionTo) const =0
Union the set of all characters that may be matched by this object into the given set.
icu::UnicodeMatcher::matchesIndexValue
virtual UBool matchesIndexValue(uint8_t v) const =0
Returns true if this matcher will match a character c, where c & 0xFF == v, at offset,...
icu::UnicodeSet
A mutable set of Unicode characters and multicharacter strings.
Definition:uniset.h:285
icu::UnicodeString
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
Definition:unistr.h:296
icu::UMatchDegree
UMatchDegree
Constants returned by UnicodeMatcher::matches() indicating the degree of match.
Definition:unimatch.h:33
icu::U_MISMATCH
@ U_MISMATCH
Constant returned by matches() indicating a mismatch between the text and this matcher.
Definition:unimatch.h:41
icu::U_PARTIAL_MATCH
@ U_PARTIAL_MATCH
Constant returned by matches() indicating a partial match between the text and this matcher.
Definition:unimatch.h:53
icu::U_MATCH
@ U_MATCH
Constant returned by matches() indicating a complete match between the text and this matcher.
Definition:unimatch.h:63
UBool
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition:umachine.h:247
utypes.h
Basic definitions for ICU, for both C and C++ APIs.
U_COMMON_API
#define U_COMMON_API
Set to export library symbols from inside the common library, and to import them from outside.
Definition:utypes.h:315

Generated by doxygen 1.9.1
[8]ページ先頭

©2009-2025 Movatter.jp