PatternMatcher Constructors

Definition

Overloads

Name Description
PatternMatcher(Parcel)

Initializes a new instance of the PatternMatcher class.

PatternMatcher(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

PatternMatcher(String, Pattern)

Initializes a new instance of the PatternMatcher class.

PatternMatcher(Parcel)

Initializes a new instance of the PatternMatcher class.

[Android.Runtime.Register(".ctor", "(Landroid/os/Parcel;)V", "")]
public PatternMatcher(Android.OS.Parcel? src);
[<Android.Runtime.Register(".ctor", "(Landroid/os/Parcel;)V", "")>]
new Android.OS.PatternMatcher : Android.OS.Parcel -> Android.OS.PatternMatcher

Parameters

src
Parcel

The parcel that supplies the data.

Attributes

Remarks

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.

Java documentation for android.os.PatternMatcher.PatternMatcher(android.os.Parcel).

Applies to

PatternMatcher(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected PatternMatcher(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.OS.PatternMatcher : nativeint * Android.Runtime.JniHandleOwnership -> Android.OS.PatternMatcher

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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

PatternMatcher(String, Pattern)

Initializes a new instance of the PatternMatcher class.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;I)V", "")]
public PatternMatcher(string? pattern, Android.OS.Pattern type);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;I)V", "")>]
new Android.OS.PatternMatcher : string * Android.OS.Pattern -> Android.OS.PatternMatcher

Parameters

pattern
String

The pattern to match.

type
Pattern

The pattern type.

Attributes

Remarks

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.

Java documentation for android.os.PatternMatcher.PatternMatcher(java.lang.String, int).

Applies to