Esempio n. 1
0
 internal static List <T> toList <T>(Iterable <T> iterable)
 {
     return(ToJava.ListToList(FromJava.IterableToEnumerable(iterable).ToList()));
 }
Esempio n. 2
0
 internal static Map <K, V> map <K, V>(K key1, V value1)
 {
     return(ToJava.DictionaryToMap(new System.Collections.Generic.Dictionary <K, V> {
         { key1, value1 }
     }));
 }
Esempio n. 3
0
 internal Map <K, V> build()
 {
     return(ToJava.DictionaryToMap(_values));
 }
Esempio n. 4
0
 internal static Map <K, V> map <K, V>()
 {
     return(ToJava.DictionaryToMap(new System.Collections.Generic.Dictionary <K, V>()));
 }