mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-5649 Put @deprecated comment back to @internal items
X-SVN-Rev: 22392
This commit is contained in:
parent
6b940caff6
commit
97c6b04e4a
2 changed files with 3 additions and 0 deletions
|
@ -151,6 +151,7 @@ public final class CanonicalIterator {
|
|||
* @param skipZeros set to true to skip characters with canonical combining class zero
|
||||
* @param output the set to add the results to
|
||||
* @internal
|
||||
* @deprecated This API is ICU internal only.
|
||||
*/
|
||||
public static void permute(String source, boolean skipZeros, Set output) {
|
||||
// TODO: optimize
|
||||
|
|
|
@ -921,6 +921,7 @@ public class UnicodeSet extends UnicodeFilter implements Freezable {
|
|||
/**
|
||||
* Tests whether the text matches at the offset. If so, returns the end of the longest substring that it matches. If not, returns -1.
|
||||
* @internal
|
||||
* @deprecated This API is ICU internal only.
|
||||
*/
|
||||
public int matchesAt(CharSequence text, int offset) {
|
||||
int lastLen = -1;
|
||||
|
@ -1858,6 +1859,7 @@ public class UnicodeSet extends UnicodeFilter implements Freezable {
|
|||
* Get the Regex equivalent for this UnicodeSet
|
||||
* @return regex pattern equivalent to this UnicodeSet
|
||||
* @internal
|
||||
* @deprecated This API is ICU internal only.
|
||||
*/
|
||||
public String getRegexEquivalent() {
|
||||
if (strings.size() == 0) return toString();
|
||||
|
|
Loading…
Add table
Reference in a new issue