#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()
static bool Lucene::UnicodeUtil::isAlnum |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is alpha-numeric.
◆ isAlpha()
static bool Lucene::UnicodeUtil::isAlpha |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is alphabetic.
◆ isDigit()
static bool Lucene::UnicodeUtil::isDigit |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is numeric.
◆ isLower()
static bool Lucene::UnicodeUtil::isLower |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is lowercase.
◆ isNonSpacing()
static bool Lucene::UnicodeUtil::isNonSpacing |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is non-spacing.
◆ isOther()
static bool Lucene::UnicodeUtil::isOther |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is other type of letter.
◆ isSpace()
static bool Lucene::UnicodeUtil::isSpace |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is a space.
◆ isUpper()
static bool Lucene::UnicodeUtil::isUpper |
( |
wchar_t |
c | ) |
|
|
static |
Return true if supplied character is uppercase.
◆ toLower()
static wchar_t Lucene::UnicodeUtil::toLower |
( |
wchar_t |
c | ) |
|
|
static |
Return lowercase representation of a given character.
◆ toUpper()
static 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: