Uses of Interface
components.map.Map
Packages that use Map
Package
Description
Provides the
Map family interfaces and implementing classes.Provides the
Program family interfaces and implementing classes.-
Uses of Map in components.map
Classes in components.map that implement MapModifier and TypeClassDescriptionclassMap1L<K,V> Maprepresented as ajava.util.Mapwith implementations of primary methods.classMap2<K,V> Maprepresented as aQueueof pairs with implementations of primary methods.classMap3<K,V> Maprepresented as aBinaryTree(maintained as a binary search tree) of pairs with implementations of primary methods.classMap4<K,V> Maprepresented as a hash table usingMaps for the buckets, with implementations of primary methods.classMapSecondary<K,V> Layered implementations of secondary methods forMap.Methods in components.map that return MapModifier and TypeMethodDescriptionMap1L.newInstance()Map2.newInstance()Map3.newInstance()Map4.newInstance()Methods in components.map with parameters of type MapModifier and TypeMethodDescriptionvoidMap.combineWith(Map<K, V> m) Combinesmwiththis.voidMapSecondary.combineWith(Map<K, V> m) booleanMap.sharesKeyWith(Map<K, V> m) Reports whetherthisandmhave any keys in common.booleanMapSecondary.sharesKeyWith(Map<K, V> m) final voidMap1L.transferFrom(Map<K, V> source) final voidMap2.transferFrom(Map<K, V> source) final voidMap3.transferFrom(Map<K, V> source) final voidMap4.transferFrom(Map<K, V> source) -
Uses of Map in components.program
Methods in components.program that return MapModifier and TypeMethodDescriptionProgram1.newContext()ProgramKernel.newContext()Creates and returns an emptyMap<String, Statement>of the dynamic type needed inswapContext.Methods in components.program with parameters of type MapModifier and TypeMethodDescriptionfinal voidProgram1.swapContext(Map<String, Statement> c) voidProgramKernel.swapContext(Map<String, Statement> c) Exchanges the context ofthiswithc;cmust have the dynamic type returned bynewContext.