#include <UnicodeUtils.h>
|
| static bool | isAlnum (wchar_t c) |
| | Return true if supplied character is alpha-numeric.
|
| static bool | isAlpha (wchar_t c) |
| | Return true if supplied character is alphabetic.
|
| static bool | isDigit (wchar_t c) |
| | Return true if supplied character is numeric.
|
| static bool | isSpace (wchar_t c) |
| | Return true if supplied character is a space.
|
| static bool | isUpper (wchar_t c) |
| | Return true if supplied character is uppercase.
|
| static bool | isLower (wchar_t c) |
| | Return true if supplied character is lowercase.
|
| static bool | isOther (wchar_t c) |
| | Return true if supplied character is other type of letter.
|
| static bool | isNonSpacing (wchar_t c) |
| | Return true if supplied character is non-spacing.
|
| static wchar_t | toUpper (wchar_t c) |
| | Return uppercase representation of a given character.
|
| static wchar_t | toLower (wchar_t c) |
| | Return lowercase representation of a given character.
|
◆ ~UnicodeUtil()
| virtual Lucene::UnicodeUtil::~UnicodeUtil |
( |
| ) |
|
|
virtual |
◆ isAlnum()
| bool Lucene::UnicodeUtil::isAlnum |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is alpha-numeric.
◆ isAlpha()
| bool Lucene::UnicodeUtil::isAlpha |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is alphabetic.
◆ isDigit()
| bool Lucene::UnicodeUtil::isDigit |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is numeric.
◆ isLower()
| bool Lucene::UnicodeUtil::isLower |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is lowercase.
◆ isNonSpacing()
| bool Lucene::UnicodeUtil::isNonSpacing |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is non-spacing.
◆ isOther()
| bool Lucene::UnicodeUtil::isOther |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is other type of letter.
◆ isSpace()
| bool Lucene::UnicodeUtil::isSpace |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is a space.
◆ isUpper()
| bool Lucene::UnicodeUtil::isUpper |
( |
wchar_t | c | ) |
|
|
static |
Return true if supplied character is uppercase.
◆ toLower()
| wchar_t Lucene::UnicodeUtil::toLower |
( |
wchar_t | c | ) |
|
|
static |
Return lowercase representation of a given character.
◆ toUpper()
| wchar_t Lucene::UnicodeUtil::toUpper |
( |
wchar_t | c | ) |
|
|
static |
Return uppercase representation of a given character.
The documentation for this class was generated from the following file: