AbstractMap.SimpleEntry Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
| Nome | Descrizione |
|---|---|
| AbstractMap.SimpleEntry(IMapEntry) | |
| AbstractMap.SimpleEntry(Object, Object) |
Crea una voce che rappresenta un mapping dalla chiave specificata al valore specificato. |
| AbstractMap.SimpleEntry(IntPtr, JniHandleOwnership) |
Costruttore usato durante la creazione di rappresentazioni gestite di oggetti JNI; chiamato dal runtime. |
AbstractMap.SimpleEntry(IMapEntry)
[Android.Runtime.Register(".ctor", "(Ljava/util/Map$Entry;)V", "")]
public SimpleEntry(Java.Util.IMapEntry entry);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Map$Entry;)V", "")>]
new Java.Util.AbstractMap.SimpleEntry : Java.Util.IMapEntry -> Java.Util.AbstractMap.SimpleEntry
Parametri
- entry
- IMapEntry
- Attributi
Commenti
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.
Si applica a
AbstractMap.SimpleEntry(Object, Object)
Crea una voce che rappresenta un mapping dalla chiave specificata al valore specificato.
[Android.Runtime.Register(".ctor", "(Ljava/lang/Object;Ljava/lang/Object;)V", "")]
public SimpleEntry(Java.Lang.Object? key, Java.Lang.Object? value);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Object;Ljava/lang/Object;)V", "")>]
new Java.Util.AbstractMap.SimpleEntry : Java.Lang.Object * Java.Lang.Object -> Java.Util.AbstractMap.SimpleEntry
Parametri
- key
- Object
chiave rappresentata da questa voce
- value
- Object
valore rappresentato da questa voce
- Attributi
Commenti
Crea una voce che rappresenta un mapping dalla chiave specificata al valore specificato.
per java.util.AbstractMap.SimpleEntry.AbstractMap$SimpleEntry(K, V).
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.
Si applica a
AbstractMap.SimpleEntry(IntPtr, JniHandleOwnership)
Costruttore usato durante la creazione di rappresentazioni gestite di oggetti JNI; chiamato dal runtime.
protected SimpleEntry(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.AbstractMap.SimpleEntry : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.AbstractMap.SimpleEntry
Parametri
- javaReference
-
IntPtr
nativeint
Oggetto IntPtrcontenente un riferimento all'oggetto JNI (Native Interface) Java.
- transfer
- JniHandleOwnership
Oggetto JniHandleOwnershipche indica come gestire javaReference
Commenti
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.