Sdílet prostřednictvím


UnicodeSet.ComplementAll Method

Definition

Overloads

ComplementAll(UnicodeSet)

Complements in this set all elements contained in the specified set.

ComplementAll(ICharSequence)

Complement EACH of the characters in this string.

ComplementAll(String)

Complement EACH of the characters in this string.

ComplementAll(UnicodeSet)

Complements in this set all elements contained in the specified set.

[Android.Runtime.Register("complementAll", "(Landroid/icu/text/UnicodeSet;)Landroid/icu/text/UnicodeSet;", "GetComplementAll_Landroid_icu_text_UnicodeSet_Handler", ApiSince=24)]
public virtual Android.Icu.Text.UnicodeSet? ComplementAll (Android.Icu.Text.UnicodeSet? c);
[<Android.Runtime.Register("complementAll", "(Landroid/icu/text/UnicodeSet;)Landroid/icu/text/UnicodeSet;", "GetComplementAll_Landroid_icu_text_UnicodeSet_Handler", ApiSince=24)>]
abstract member ComplementAll : Android.Icu.Text.UnicodeSet -> Android.Icu.Text.UnicodeSet
override this.ComplementAll : Android.Icu.Text.UnicodeSet -> Android.Icu.Text.UnicodeSet

Parameters

c
UnicodeSet

set that defines which elements will be complemented from this set.

Returns

Attributes

Remarks

Complements in this set all elements contained in the specified set. Any character in the other set will be removed if it is in this set, or will be added if it is not in this set.

Java documentation for android.icu.text.UnicodeSet.complementAll(android.icu.text.UnicodeSet).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ComplementAll(ICharSequence)

Complement EACH of the characters in this string.

[Android.Runtime.Register("complementAll", "(Ljava/lang/CharSequence;)Landroid/icu/text/UnicodeSet;", "", ApiSince=24)]
public Android.Icu.Text.UnicodeSet? ComplementAll (Java.Lang.ICharSequence? s);
[<Android.Runtime.Register("complementAll", "(Ljava/lang/CharSequence;)Landroid/icu/text/UnicodeSet;", "", ApiSince=24)>]
member this.ComplementAll : Java.Lang.ICharSequence -> Android.Icu.Text.UnicodeSet

Parameters

s
ICharSequence

the source string

Returns

this object, for chaining

Attributes

Remarks

Complement EACH of the characters in this string. Note: "ch" == {"c", "h"} If this set already any particular character, it has no effect on that character.

Java documentation for android.icu.text.UnicodeSet.complementAll(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ComplementAll(String)

Complement EACH of the characters in this string.

public Android.Icu.Text.UnicodeSet? ComplementAll (string? s);
member this.ComplementAll : string -> Android.Icu.Text.UnicodeSet

Parameters

s
String

the source string

Returns

this object, for chaining

Remarks

Complement EACH of the characters in this string. Note: "ch" == {"c", "h"} If this set already any particular character, it has no effect on that character.

Java documentation for android.icu.text.UnicodeSet.complementAll(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to