Updated Javadoc text for QrSegmentAdvanced related to kanji encoding.

This commit is contained in:
Project Nayuki 2018-06-24 20:51:36 +00:00
parent 67ebd5215d
commit 49d9301b77
1 changed files with 6 additions and 6 deletions

View File

@ -228,9 +228,9 @@ public final class QrSegmentAdvanced {
/**
* Returns a segment representing the specified string encoded in kanji mode.
* <p>Note that broadly speaking, the set of encodable characters are {kanji used in Japan, hiragana, katakana,
* Asian punctuation, full-width ASCII}.<br/>
* In particular, non-encodable characters are {normal ASCII, half-width katakana, more extensive Chinese hanzi}.
* <p>Note that broadly speaking, the set of encodable characters are {kanji used in Japan,
* hiragana, katakana, East Asian punctuation, full-width ASCII, Greek, Cyrillic}.<br/>
* Examples of non-encodable characters include {normal ASCII, half-width katakana, more extensive Chinese hanzi}.
* @param text the text to be encoded, which must fall in the kanji mode subset of characters
* @return a segment containing the data
* @throws NullPointerException if the string is {@code null}
@ -252,9 +252,9 @@ public final class QrSegmentAdvanced {
/**
* Tests whether the specified text string can be encoded as a segment in kanji mode.
* <p>Note that broadly speaking, the set of encodable characters are {kanji used in Japan, hiragana, katakana,
* Asian punctuation, full-width ASCII}.<br/>
* In particular, non-encodable characters are {normal ASCII, half-width katakana, more extensive Chinese hanzi}.
* <p>Note that broadly speaking, the set of encodable characters are {kanji used in Japan,
* hiragana, katakana, East Asian punctuation, full-width ASCII, Greek, Cyrillic}.<br/>
* Examples of non-encodable characters include {normal ASCII, half-width katakana, more extensive Chinese hanzi}.
* @param text the string to test for encodability
* @return {@code true} if and only if the string can be encoded in kanji mode
* @throws NullPointerException if the string is {@code null}