Java Doc for Adapter.java in  » Development » PCJ » bak » pcj » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Development » PCJ » bak.pcj 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   bak.pcj.Adapter

Adapter
public class Adapter (Code)
This class provides static methods for creating adapters betweeen primitive collections and Java Collection Framework collections. Adapters are generally implemented as wrappers around an underlying collection. Thus, changes to the underlying collection are reflected by the adapting collection and vice versa.

In order for adaptions from JCF to PCJ to work correctly, a number of rules should be followed:

  • The underlying java.util collection/iterator should only contain values of the class representing the primitive type of the adapting collection/iterator. E.g. if a List is adapted to a FloatCollection, the List can only contain values of class Float. If this rule is not followed, a ClassCastException ClassCastException will likely be thrown by some or all of the adaption's methods.
  • The underlying java.util collection/iterator should not contain null-values. If this rule is not followed, a NullPointerException NullPointerException will likely be thrown by some or all of the adaption's methods.
The adapter classes from JCF to PCJ all contains validation methods to ensure that these rules are followed, and a number of static methods is available in this class to check whether a JCF collection is adaptable (isTAdaptable(Collection), isTKeyAdaptable(Map), and isTKeySAdaptable(Map)).
author:
   Søren Bak
version:
   1.3 18-08-2003 23:53
since:
   1.0




Method Summary
public static  BooleanKeyBooleanMapasBooleanKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to boolean values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyByteMapasBooleanKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to byte values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyCharMapasBooleanKeyChars(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to char values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyDoubleMapasBooleanKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to double values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyFloatMapasBooleanKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to float values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyIntMapasBooleanKeyInts(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to int values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyLongMapasBooleanKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to long values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyShortMapasBooleanKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to short values.
Parameters:
  map - the map to adapt.
public static  BooleanKeyMapasBooleanKeys(Map map)
     Returns an adaption of a map to a primitive map from boolean keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  BooleanIteratorasBooleans(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive boolean values.
Parameters:
  iterator - the iterator to adapt.
public static  BooleanCollectionasBooleans(Collection collection)
     Returns an adaption of a collection to a collection of primitive boolean values.
Parameters:
  collection - the collection to adapt.
public static  BooleanListIteratorasBooleans(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive boolean values.
Parameters:
  iterator - the list iterator to adapt.
public static  BooleanSetasBooleans(Set set)
     Returns an adaption of a set to a set of primitive boolean values.
Parameters:
  set - the set to adapt.
public static  BooleanSortedSetasBooleans(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive boolean values.
Parameters:
  set - the set to adapt.
public static  BooleanListasBooleans(List list)
     Returns an adaption of a list to a list of primitive boolean values.
Parameters:
  list - the list to adapt.
public static  ByteKeyBooleanMapasByteKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from byte keys to boolean values.
Parameters:
  map - the map to adapt.
public static  ByteKeyByteMapasByteKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from byte keys to byte values.
Parameters:
  map - the map to adapt.
public static  ByteKeyCharMapasByteKeyChars(Map map)
     Returns an adaption of a map to a primitive map from byte keys to char values.
Parameters:
  map - the map to adapt.
public static  ByteKeyDoubleMapasByteKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from byte keys to double values.
Parameters:
  map - the map to adapt.
public static  ByteKeyFloatMapasByteKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from byte keys to float values.
Parameters:
  map - the map to adapt.
public static  ByteKeyIntMapasByteKeyInts(Map map)
     Returns an adaption of a map to a primitive map from byte keys to int values.
Parameters:
  map - the map to adapt.
public static  ByteKeyLongMapasByteKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from byte keys to long values.
Parameters:
  map - the map to adapt.
public static  ByteKeyShortMapasByteKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from byte keys to short values.
Parameters:
  map - the map to adapt.
public static  ByteKeyMapasByteKeys(Map map)
     Returns an adaption of a map to a primitive map from byte keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  ByteIteratorasBytes(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive byte values.
Parameters:
  iterator - the iterator to adapt.
public static  ByteCollectionasBytes(Collection collection)
     Returns an adaption of a collection to a collection of primitive byte values.
Parameters:
  collection - the collection to adapt.
public static  ByteListIteratorasBytes(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive byte values.
Parameters:
  iterator - the list iterator to adapt.
public static  ByteSetasBytes(Set set)
     Returns an adaption of a set to a set of primitive byte values.
Parameters:
  set - the set to adapt.
public static  ByteSortedSetasBytes(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive byte values.
Parameters:
  set - the set to adapt.
public static  ByteListasBytes(List list)
     Returns an adaption of a list to a list of primitive byte values.
Parameters:
  list - the list to adapt.
public static  CharKeyBooleanMapasCharKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from char keys to boolean values.
Parameters:
  map - the map to adapt.
public static  CharKeyByteMapasCharKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from char keys to byte values.
Parameters:
  map - the map to adapt.
public static  CharKeyCharMapasCharKeyChars(Map map)
     Returns an adaption of a map to a primitive map from char keys to char values.
Parameters:
  map - the map to adapt.
public static  CharKeyDoubleMapasCharKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from char keys to double values.
Parameters:
  map - the map to adapt.
public static  CharKeyFloatMapasCharKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from char keys to float values.
Parameters:
  map - the map to adapt.
public static  CharKeyIntMapasCharKeyInts(Map map)
     Returns an adaption of a map to a primitive map from char keys to int values.
Parameters:
  map - the map to adapt.
public static  CharKeyLongMapasCharKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from char keys to long values.
Parameters:
  map - the map to adapt.
public static  CharKeyShortMapasCharKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from char keys to short values.
Parameters:
  map - the map to adapt.
public static  CharKeyMapasCharKeys(Map map)
     Returns an adaption of a map to a primitive map from char keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  CharIteratorasChars(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive char values.
public static  CharCollectionasChars(Collection collection)
     Returns an adaption of a collection to a collection of primitive char values.
Parameters:
  collection - the collection to adapt.
public static  CharListIteratorasChars(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive char values.
Parameters:
  iterator - the list iterator to adapt.
public static  CharSetasChars(Set set)
     Returns an adaption of a set to a set of primitive char values.
Parameters:
  set - the set to adapt.
public static  CharSortedSetasChars(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive char values.
Parameters:
  set - the set to adapt.
public static  CharListasChars(List list)
     Returns an adaption of a list to a list of primitive char values.
Parameters:
  list - the list to adapt.
public static  DoubleKeyBooleanMapasDoubleKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from double keys to boolean values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyByteMapasDoubleKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from double keys to byte values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyCharMapasDoubleKeyChars(Map map)
     Returns an adaption of a map to a primitive map from double keys to char values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyDoubleMapasDoubleKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from double keys to double values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyFloatMapasDoubleKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from double keys to float values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyIntMapasDoubleKeyInts(Map map)
     Returns an adaption of a map to a primitive map from double keys to int values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyLongMapasDoubleKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from double keys to long values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyShortMapasDoubleKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from double keys to short values.
Parameters:
  map - the map to adapt.
public static  DoubleKeyMapasDoubleKeys(Map map)
     Returns an adaption of a map to a primitive map from double keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  DoubleIteratorasDoubles(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive double values.
Parameters:
  iterator - the iterator to adapt.
public static  DoubleCollectionasDoubles(Collection collection)
     Returns an adaption of a collection to a collection of primitive double values.
Parameters:
  collection - the collection to adapt.
public static  DoubleListIteratorasDoubles(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive double values.
Parameters:
  iterator - the list iterator to adapt.
public static  DoubleSetasDoubles(Set set)
     Returns an adaption of a set to a set of primitive double values.
Parameters:
  set - the set to adapt.
public static  DoubleSortedSetasDoubles(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive double values.
Parameters:
  set - the set to adapt.
public static  DoubleListasDoubles(List list)
     Returns an adaption of a list to a list of primitive double values.
Parameters:
  list - the list to adapt.
public static  FloatKeyBooleanMapasFloatKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from float keys to boolean values.
Parameters:
  map - the map to adapt.
public static  FloatKeyByteMapasFloatKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from float keys to byte values.
Parameters:
  map - the map to adapt.
public static  FloatKeyCharMapasFloatKeyChars(Map map)
     Returns an adaption of a map to a primitive map from float keys to char values.
Parameters:
  map - the map to adapt.
public static  FloatKeyDoubleMapasFloatKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from float keys to double values.
Parameters:
  map - the map to adapt.
public static  FloatKeyFloatMapasFloatKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from float keys to float values.
Parameters:
  map - the map to adapt.
public static  FloatKeyIntMapasFloatKeyInts(Map map)
     Returns an adaption of a map to a primitive map from float keys to int values.
Parameters:
  map - the map to adapt.
public static  FloatKeyLongMapasFloatKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from float keys to long values.
Parameters:
  map - the map to adapt.
public static  FloatKeyShortMapasFloatKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from float keys to short values.
Parameters:
  map - the map to adapt.
public static  FloatKeyMapasFloatKeys(Map map)
     Returns an adaption of a map to a primitive map from float keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  FloatIteratorasFloats(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive float values.
Parameters:
  iterator - the iterator to adapt.
public static  FloatCollectionasFloats(Collection collection)
     Returns an adaption of a collection to a collection of primitive float values.
Parameters:
  collection - the collection to adapt.
public static  FloatListIteratorasFloats(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive float values.
Parameters:
  iterator - the list iterator to adapt.
public static  FloatSetasFloats(Set set)
     Returns an adaption of a set to a set of primitive float values.
Parameters:
  set - the set to adapt.
public static  FloatSortedSetasFloats(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive float values.
Parameters:
  set - the set to adapt.
public static  FloatListasFloats(List list)
     Returns an adaption of a list to a list of primitive float values.
Parameters:
  list - the list to adapt.
public static  IntKeyBooleanMapasIntKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from int keys to boolean values.
Parameters:
  map - the map to adapt.
public static  IntKeyByteMapasIntKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from int keys to byte values.
Parameters:
  map - the map to adapt.
public static  IntKeyCharMapasIntKeyChars(Map map)
     Returns an adaption of a map to a primitive map from int keys to char values.
Parameters:
  map - the map to adapt.
public static  IntKeyDoubleMapasIntKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from int keys to double values.
Parameters:
  map - the map to adapt.
public static  IntKeyFloatMapasIntKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from int keys to float values.
Parameters:
  map - the map to adapt.
public static  IntKeyIntMapasIntKeyInts(Map map)
     Returns an adaption of a map to a primitive map from int keys to int values.
Parameters:
  map - the map to adapt.
public static  IntKeyLongMapasIntKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from int keys to long values.
Parameters:
  map - the map to adapt.
public static  IntKeyShortMapasIntKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from int keys to short values.
Parameters:
  map - the map to adapt.
public static  IntKeyMapasIntKeys(Map map)
     Returns an adaption of a map to a primitive map from int keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  IntIteratorasInts(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive int values.
Parameters:
  iterator - the iterator to adapt.
public static  IntCollectionasInts(Collection collection)
     Returns an adaption of a collection to a collection of primitive int values.
Parameters:
  collection - the collection to adapt.
public static  IntListIteratorasInts(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive int values.
Parameters:
  iterator - the list iterator to adapt.
public static  IntSetasInts(Set set)
     Returns an adaption of a set to a set of primitive int values.
Parameters:
  set - the set to adapt.
public static  IntSortedSetasInts(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive int values.
Parameters:
  set - the set to adapt.
public static  IntListasInts(List list)
     Returns an adaption of a list to a list of primitive int values.
Parameters:
  list - the list to adapt.
public static  LongKeyBooleanMapasLongKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from long keys to boolean values.
Parameters:
  map - the map to adapt.
public static  LongKeyByteMapasLongKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from long keys to byte values.
Parameters:
  map - the map to adapt.
public static  LongKeyCharMapasLongKeyChars(Map map)
     Returns an adaption of a map to a primitive map from long keys to char values.
Parameters:
  map - the map to adapt.
public static  LongKeyDoubleMapasLongKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from long keys to double values.
Parameters:
  map - the map to adapt.
public static  LongKeyFloatMapasLongKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from long keys to float values.
Parameters:
  map - the map to adapt.
public static  LongKeyIntMapasLongKeyInts(Map map)
     Returns an adaption of a map to a primitive map from long keys to int values.
Parameters:
  map - the map to adapt.
public static  LongKeyLongMapasLongKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from long keys to long values.
Parameters:
  map - the map to adapt.
public static  LongKeyShortMapasLongKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from long keys to short values.
Parameters:
  map - the map to adapt.
public static  LongKeyMapasLongKeys(Map map)
     Returns an adaption of a map to a primitive map from long keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  LongIteratorasLongs(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive long values.
Parameters:
  iterator - the iterator to adapt.
public static  LongCollectionasLongs(Collection collection)
     Returns an adaption of a collection to a collection of primitive long values.
Parameters:
  collection - the collection to adapt.
public static  LongListIteratorasLongs(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive long values.
Parameters:
  iterator - the list iterator to adapt.
public static  LongSetasLongs(Set set)
     Returns an adaption of a set to a set of primitive long values.
Parameters:
  set - the set to adapt.
public static  LongSortedSetasLongs(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive long values.
Parameters:
  set - the set to adapt.
public static  LongListasLongs(List list)
     Returns an adaption of a list to a list of primitive long values.
Parameters:
  list - the list to adapt.
public static  ObjectKeyBooleanMapasObjectKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from object keys to boolean values.
Parameters:
  map - the map to adapt to a primitive map.
public static  ObjectKeyByteMapasObjectKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from object keys to byte values.
Parameters:
  map - the map to adapt to a primitive map.
public static  ObjectKeyCharMapasObjectKeyChars(Map map)
     Returns an adaption of a map to a primitive map from object keys to char values.
Parameters:
  map - the map to adapt to a primitive map.
public static  ObjectKeyDoubleMapasObjectKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from object keys to double values.
Parameters:
  map - the map to adapt to a primitive map.
public static  ObjectKeyFloatMapasObjectKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from object keys to float values.
Parameters:
  map - the map to adapt to a primitive map.
public static  ObjectKeyIntMapasObjectKeyInts(Map map)
     Returns an adaption of a map to a primitive map from object keys to int values.
Parameters:
  map - the map to adapt to a primitive map.
public static  ObjectKeyLongMapasObjectKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from object keys to long values.
Parameters:
  map - the map to adapt to a primitive map.
public static  ObjectKeyShortMapasObjectKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from object keys to short values.
Parameters:
  map - the map to adapt to a primitive map.
public static  IteratorasObjects(BooleanIterator iterator)
     Returns an adaption of an iterator over primitive boolean values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  IteratorasObjects(CharIterator iterator)
     Returns an adaption of an iterator over primitive char values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  IteratorasObjects(ByteIterator iterator)
     Returns an adaption of an iterator over primitive byte values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  IteratorasObjects(ShortIterator iterator)
     Returns an adaption of an iterator over primitive short values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  IteratorasObjects(IntIterator iterator)
     Returns an adaption of an iterator over primitive int values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  IteratorasObjects(LongIterator iterator)
     Returns an adaption of an iterator over primitive long values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  IteratorasObjects(FloatIterator iterator)
     Returns an adaption of an iterator over primitive float values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  IteratorasObjects(DoubleIterator iterator)
     Returns an adaption of an iterator over primitive double values to an iterator.
Parameters:
  iterator - the iterator to adapt.
public static  CollectionasObjects(BooleanCollection collection)
     Returns an adaption of a primitive collection of boolean values to a collection.
Parameters:
  collection - the collection to adapt.
public static  CollectionasObjects(CharCollection collection)
     Returns an adaption of a primitive collection of char values to a collection.
Parameters:
  collection - the collection to adapt.
public static  CollectionasObjects(ByteCollection collection)
     Returns an adaption of a primitive collection of byte values to a collection.
Parameters:
  collection - the collection to adapt.
public static  CollectionasObjects(ShortCollection collection)
     Returns an adaption of a primitive collection of short values to a collection.
Parameters:
  collection - the collection to adapt.
public static  CollectionasObjects(IntCollection collection)
     Returns an adaption of a primitive collection of int values to a collection.
Parameters:
  collection - the collection to adapt.
public static  CollectionasObjects(LongCollection collection)
     Returns an adaption of a primitive collection of long values to a collection.
Parameters:
  collection - the collection to adapt.
public static  CollectionasObjects(FloatCollection collection)
     Returns an adaption of a primitive collection of float values to a collection.
Parameters:
  collection - the collection to adapt.
public static  CollectionasObjects(DoubleCollection collection)
     Returns an adaption of a primitive collection of double values to a collection.
Parameters:
  collection - the collection to adapt.
public static  ListIteratorasObjects(BooleanListIterator iterator)
     Returns an adaption of a list iterator over primitive boolean values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  ListIteratorasObjects(CharListIterator iterator)
     Returns an adaption of a list iterator over primitive char values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  ListIteratorasObjects(ByteListIterator iterator)
     Returns an adaption of a list iterator over primitive byte values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  ListIteratorasObjects(ShortListIterator iterator)
     Returns an adaption of a list iterator over primitive short values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  ListIteratorasObjects(IntListIterator iterator)
     Returns an adaption of a list iterator over primitive int values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  ListIteratorasObjects(LongListIterator iterator)
     Returns an adaption of a list iterator over primitive long values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  ListIteratorasObjects(FloatListIterator iterator)
     Returns an adaption of a list iterator over primitive float values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  ListIteratorasObjects(DoubleListIterator iterator)
     Returns an adaption of a list iterator over primitive double values to a list iterator.
Parameters:
  iterator - the list iterator to adapt.
public static  SetasObjects(BooleanSet set)
     Returns an adaption of a set of primitive boolean values to a set.
Parameters:
  set - the set to adapt.
public static  SetasObjects(CharSet set)
     Returns an adaption of a set of primitive char values to a set.
Parameters:
  set - the set to adapt.
public static  SetasObjects(ByteSet set)
     Returns an adaption of a set of primitive byte values to a set.
Parameters:
  set - the set to adapt.
public static  SetasObjects(ShortSet set)
     Returns an adaption of a set of primitive short values to a set.
Parameters:
  set - the set to adapt.
public static  SetasObjects(IntSet set)
     Returns an adaption of a set of primitive int values to a set.
Parameters:
  set - the set to adapt.
public static  SetasObjects(LongSet set)
     Returns an adaption of a set of primitive long values to a set.
Parameters:
  set - the set to adapt.
public static  SetasObjects(FloatSet set)
     Returns an adaption of a set of primitive float values to a set.
Parameters:
  set - the set to adapt.
public static  SetasObjects(DoubleSet set)
     Returns an adaption of a set of primitive double values to a set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(BooleanSortedSet set)
     Returns an adaption of a sorted set of primitive boolean values to a sorted set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(CharSortedSet set)
     Returns an adaption of a sorted set of primitive char values to a sorted set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(ByteSortedSet set)
     Returns an adaption of a sorted set of primitive byte values to a sorted set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(ShortSortedSet set)
     Returns an adaption of a sorted set of primitive short values to a sorted set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(IntSortedSet set)
     Returns an adaption of a sorted set of primitive int values to a sorted set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(LongSortedSet set)
     Returns an adaption of a sorted set of primitive long values to a sorted set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(FloatSortedSet set)
     Returns an adaption of a sorted set of primitive float values to a sorted set.
Parameters:
  set - the set to adapt.
public static  SortedSetasObjects(DoubleSortedSet set)
     Returns an adaption of a sorted set of primitive double values to a sorted set.
Parameters:
  set - the set to adapt.
public static  ListasObjects(BooleanList list)
     Returns an adaption of a list of primitive boolean values to a list.
Parameters:
  list - the list to adapt.
public static  ListasObjects(CharList list)
     Returns an adaption of a list of primitive char values to a list.
Parameters:
  list - the list to adapt.
public static  ListasObjects(ByteList list)
     Returns an adaption of a list of primitive byte values to a list.
Parameters:
  list - the list to adapt.
public static  ListasObjects(ShortList list)
     Returns an adaption of a list of primitive short values to a list.
Parameters:
  list - the list to adapt.
public static  ListasObjects(IntList list)
     Returns an adaption of a list of primitive int values to a list.
Parameters:
  list - the list to adapt.
public static  ListasObjects(LongList list)
     Returns an adaption of a list of primitive long values to a list.
Parameters:
  list - the list to adapt.
public static  ListasObjects(FloatList list)
     Returns an adaption of a list of primitive float values to a list.
Parameters:
  list - the list to adapt.
public static  ListasObjects(DoubleList list)
     Returns an adaption of a list of primitive double values to a list.
Parameters:
  list - the list to adapt.
public static  MapasObjects(BooleanKeyBooleanMap map)
     Returns an adaption of a primitive map from boolean keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(BooleanKeyByteMap map)
     Returns an adaption of a primitive map from boolean keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(BooleanKeyShortMap map)
     Returns an adaption of a primitive map from boolean keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(BooleanKeyIntMap map)
     Returns an adaption of a primitive map from boolean keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(BooleanKeyLongMap map)
     Returns an adaption of a primitive map from boolean keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(BooleanKeyFloatMap map)
     Returns an adaption of a primitive map from boolean keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(BooleanKeyDoubleMap map)
     Returns an adaption of a primitive map from boolean keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyBooleanMap map)
     Returns an adaption of a primitive map from char keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyCharMap map)
     Returns an adaption of a primitive map from char keys to char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyByteMap map)
     Returns an adaption of a primitive map from char keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyShortMap map)
     Returns an adaption of a primitive map from char keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyIntMap map)
     Returns an adaption of a primitive map from char keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyLongMap map)
     Returns an adaption of a primitive map from char keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyFloatMap map)
     Returns an adaption of a primitive map from char keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyDoubleMap map)
     Returns an adaption of a primitive map from char keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyBooleanMap map)
     Returns an adaption of a primitive map from byte keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyCharMap map)
     Returns an adaption of a primitive map from byte keys to char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyByteMap map)
     Returns an adaption of a primitive map from byte keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyShortMap map)
     Returns an adaption of a primitive map from byte keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyIntMap map)
     Returns an adaption of a primitive map from byte keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyLongMap map)
     Returns an adaption of a primitive map from byte keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyFloatMap map)
     Returns an adaption of a primitive map from byte keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyDoubleMap map)
     Returns an adaption of a primitive map from byte keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyBooleanMap map)
     Returns an adaption of a primitive map from short keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyCharMap map)
     Returns an adaption of a primitive map from short keys to char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyByteMap map)
     Returns an adaption of a primitive map from short keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyShortMap map)
     Returns an adaption of a primitive map from short keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyIntMap map)
     Returns an adaption of a primitive map from short keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyLongMap map)
     Returns an adaption of a primitive map from short keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyFloatMap map)
     Returns an adaption of a primitive map from short keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyDoubleMap map)
     Returns an adaption of a primitive map from short keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyBooleanMap map)
     Returns an adaption of a primitive map from int keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyCharMap map)
     Returns an adaption of a primitive map from int keys to char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyByteMap map)
     Returns an adaption of a primitive map from int keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyShortMap map)
     Returns an adaption of a primitive map from int keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyIntMap map)
     Returns an adaption of a primitive map from int keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyLongMap map)
     Returns an adaption of a primitive map from int keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyFloatMap map)
     Returns an adaption of a primitive map from int keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyDoubleMap map)
     Returns an adaption of a primitive map from int keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyBooleanMap map)
     Returns an adaption of a primitive map from long keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyCharMap map)
     Returns an adaption of a primitive map from long keys to char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyByteMap map)
     Returns an adaption of a primitive map from long keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyShortMap map)
     Returns an adaption of a primitive map from long keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyIntMap map)
     Returns an adaption of a primitive map from long keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyLongMap map)
     Returns an adaption of a primitive map from long keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyFloatMap map)
     Returns an adaption of a primitive map from long keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyDoubleMap map)
     Returns an adaption of a primitive map from long keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyBooleanMap map)
     Returns an adaption of a primitive map from float keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyCharMap map)
     Returns an adaption of a primitive map from float keys to char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyByteMap map)
     Returns an adaption of a primitive map from float keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyShortMap map)
     Returns an adaption of a primitive map from float keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyIntMap map)
     Returns an adaption of a primitive map from float keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyLongMap map)
     Returns an adaption of a primitive map from float keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyFloatMap map)
     Returns an adaption of a primitive map from float keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyDoubleMap map)
     Returns an adaption of a primitive map from float keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyBooleanMap map)
     Returns an adaption of a primitive map from double keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyCharMap map)
     Returns an adaption of a primitive map from double keys to char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyByteMap map)
     Returns an adaption of a primitive map from double keys to byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyShortMap map)
     Returns an adaption of a primitive map from double keys to short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyIntMap map)
     Returns an adaption of a primitive map from double keys to int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyLongMap map)
     Returns an adaption of a primitive map from double keys to long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyFloatMap map)
     Returns an adaption of a primitive map from double keys to float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyDoubleMap map)
     Returns an adaption of a primitive map from double keys to double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(BooleanKeyMap map)
     Returns an adaption of a primitive map of boolean keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(CharKeyMap map)
     Returns an adaption of a primitive map of char keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ByteKeyMap map)
     Returns an adaption of a primitive map of byte keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ShortKeyMap map)
     Returns an adaption of a primitive map of short keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(IntKeyMap map)
     Returns an adaption of a primitive map of int keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(LongKeyMap map)
     Returns an adaption of a primitive map of long keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(FloatKeyMap map)
     Returns an adaption of a primitive map of float keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(DoubleKeyMap map)
     Returns an adaption of a primitive map of double keys to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyBooleanMap map)
     Returns an adaption of a primitive map of object keys and boolean values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyCharMap map)
     Returns an adaption of a primitive map of object keys and char values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyByteMap map)
     Returns an adaption of a primitive map of object keys and byte values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyShortMap map)
     Returns an adaption of a primitive map of object keys and short values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyIntMap map)
     Returns an adaption of a primitive map of object keys and int values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyLongMap map)
     Returns an adaption of a primitive map of object keys and long values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyFloatMap map)
     Returns an adaption of a primitive map of object keys and float values to a map.
Parameters:
  map - the primitive map to adapt.
public static  MapasObjects(ObjectKeyDoubleMap map)
     Returns an adaption of a primitive map of object keys and double values to a map.
Parameters:
  map - the primitive map to adapt.
public static  ShortKeyBooleanMapasShortKeyBooleans(Map map)
     Returns an adaption of a map to a primitive map from short keys to boolean values.
Parameters:
  map - the map to adapt.
public static  ShortKeyByteMapasShortKeyBytes(Map map)
     Returns an adaption of a map to a primitive map from short keys to byte values.
Parameters:
  map - the map to adapt.
public static  ShortKeyCharMapasShortKeyChars(Map map)
     Returns an adaption of a map to a primitive map from short keys to char values.
Parameters:
  map - the map to adapt.
public static  ShortKeyDoubleMapasShortKeyDoubles(Map map)
     Returns an adaption of a map to a primitive map from short keys to double values.
Parameters:
  map - the map to adapt.
public static  ShortKeyFloatMapasShortKeyFloats(Map map)
     Returns an adaption of a map to a primitive map from short keys to float values.
Parameters:
  map - the map to adapt.
public static  ShortKeyIntMapasShortKeyInts(Map map)
     Returns an adaption of a map to a primitive map from short keys to int values.
Parameters:
  map - the map to adapt.
public static  ShortKeyLongMapasShortKeyLongs(Map map)
     Returns an adaption of a map to a primitive map from short keys to long values.
Parameters:
  map - the map to adapt.
public static  ShortKeyShortMapasShortKeyShorts(Map map)
     Returns an adaption of a map to a primitive map from short keys to short values.
Parameters:
  map - the map to adapt.
public static  ShortKeyMapasShortKeys(Map map)
     Returns an adaption of a map to a primitive map from short keys to objects.
Parameters:
  map - the map to adapt to a primitive map.
public static  ShortIteratorasShorts(Iterator iterator)
     Returns an adaption of an iterator to an iterator over primitive short values.
Parameters:
  iterator - the iterator to adapt.
public static  ShortCollectionasShorts(Collection collection)
     Returns an adaption of a collection to a collection of primitive short values.
Parameters:
  collection - the collection to adapt.
public static  ShortListIteratorasShorts(ListIterator iterator)
     Returns an adaption of a list iterator to a list iterator over primitive short values.
Parameters:
  iterator - the list iterator to adapt.
public static  ShortSetasShorts(Set set)
     Returns an adaption of a set to a set of primitive short values.
Parameters:
  set - the set to adapt.
public static  ShortSortedSetasShorts(SortedSet set)
     Returns an adaption of a sorted set to a sorted set of primitive short values.
Parameters:
  set - the set to adapt.
public static  ShortListasShorts(List list)
     Returns an adaption of a list to a list of primitive short values.
Parameters:
  list - the list to adapt.
public static  booleanisBooleanAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of boolean values.
public static  booleanisBooleanKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys.
public static  booleanisBooleanKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and boolean values.
public static  booleanisBooleanKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and byte values.
public static  booleanisBooleanKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and char values.
public static  booleanisBooleanKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and double values.
public static  booleanisBooleanKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and float values.
public static  booleanisBooleanKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and int values.
public static  booleanisBooleanKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and long values.
public static  booleanisBooleanKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with boolean keys and short values.
public static  booleanisByteAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of byte values.
public static  booleanisByteKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys.
public static  booleanisByteKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and boolean values.
public static  booleanisByteKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and byte values.
public static  booleanisByteKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and char values.
public static  booleanisByteKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and double values.
public static  booleanisByteKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and float values.
public static  booleanisByteKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and int values.
public static  booleanisByteKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and long values.
public static  booleanisByteKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with byte keys and short values.
public static  booleanisCharAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of char values.
public static  booleanisCharKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys.
public static  booleanisCharKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and boolean values.
public static  booleanisCharKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and byte values.
public static  booleanisCharKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and char values.
public static  booleanisCharKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and double values.
public static  booleanisCharKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and float values.
public static  booleanisCharKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and int values.
public static  booleanisCharKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and long values.
public static  booleanisCharKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with char keys and short values.
public static  booleanisDoubleAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of double values.
public static  booleanisDoubleKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys.
public static  booleanisDoubleKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and boolean values.
public static  booleanisDoubleKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and byte values.
public static  booleanisDoubleKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and char values.
public static  booleanisDoubleKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and double values.
public static  booleanisDoubleKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and float values.
public static  booleanisDoubleKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and int values.
public static  booleanisDoubleKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and long values.
public static  booleanisDoubleKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with double keys and short values.
public static  booleanisFloatAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of float values.
public static  booleanisFloatKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys.
public static  booleanisFloatKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and boolean values.
public static  booleanisFloatKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and byte values.
public static  booleanisFloatKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and char values.
public static  booleanisFloatKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and double values.
public static  booleanisFloatKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and float values.
public static  booleanisFloatKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and int values.
public static  booleanisFloatKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and long values.
public static  booleanisFloatKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with float keys and short values.
public static  booleanisIntAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of int values.
public static  booleanisIntKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys.
public static  booleanisIntKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and boolean values.
public static  booleanisIntKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and byte values.
public static  booleanisIntKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and char values.
public static  booleanisIntKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and double values.
public static  booleanisIntKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and float values.
public static  booleanisIntKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and int values.
public static  booleanisIntKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and long values.
public static  booleanisIntKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with int keys and short values.
public static  booleanisLongAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of long values.
public static  booleanisLongKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys.
public static  booleanisLongKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and boolean values.
public static  booleanisLongKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and byte values.
public static  booleanisLongKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and char values.
public static  booleanisLongKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and double values.
public static  booleanisLongKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and float values.
public static  booleanisLongKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and int values.
public static  booleanisLongKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and long values.
public static  booleanisLongKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with long keys and short values.
public static  booleanisObjectKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and boolean values.
public static  booleanisObjectKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and byte values.
public static  booleanisObjectKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and char values.
public static  booleanisObjectKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and double values.
public static  booleanisObjectKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and float values.
public static  booleanisObjectKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and int values.
public static  booleanisObjectKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and long values.
public static  booleanisObjectKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with object keys and short values.
public static  booleanisShortAdaptable(Collection collection)
     Indicates whether a specified collection is adaptable to a primitive collection of short values.
public static  booleanisShortKeyAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys.
public static  booleanisShortKeyBooleanAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and boolean values.
public static  booleanisShortKeyByteAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and byte values.
public static  booleanisShortKeyCharAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and char values.
public static  booleanisShortKeyDoubleAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and double values.
public static  booleanisShortKeyFloatAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and float values.
public static  booleanisShortKeyIntAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and int values.
public static  booleanisShortKeyLongAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and long values.
public static  booleanisShortKeyShortAdaptable(Map map)
     Indicates whether a specified map is adaptable to a primitive map with short keys and short values.



Method Detail
asBooleanKeyBooleans
public static BooleanKeyBooleanMap asBooleanKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to boolean values.



asBooleanKeyBytes
public static BooleanKeyByteMap asBooleanKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to byte values.



asBooleanKeyChars
public static BooleanKeyCharMap asBooleanKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to char values.



asBooleanKeyDoubles
public static BooleanKeyDoubleMap asBooleanKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to double values.



asBooleanKeyFloats
public static BooleanKeyFloatMap asBooleanKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to float values.



asBooleanKeyInts
public static BooleanKeyIntMap asBooleanKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to int values.



asBooleanKeyLongs
public static BooleanKeyLongMap asBooleanKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to long values.



asBooleanKeyShorts
public static BooleanKeyShortMap asBooleanKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromboolean keys to short values.



asBooleanKeys
public static BooleanKeyMap asBooleanKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from boolean keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asBooleans
public static BooleanIterator asBooleans(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive boolean values.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator to an iterator overprimitive boolean values.



asBooleans
public static BooleanCollection asBooleans(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive boolean values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive boolean values.



asBooleans
public static BooleanListIterator asBooleans(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive boolean values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive boolean values.



asBooleans
public static BooleanSet asBooleans(Set set)(Code)
Returns an adaption of a set to a set of primitive boolean values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive boolean values.



asBooleans
public static BooleanSortedSet asBooleans(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive boolean values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive boolean values.
since:
   1.2



asBooleans
public static BooleanList asBooleans(List list)(Code)
Returns an adaption of a list to a list of primitive boolean values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive boolean values.



asByteKeyBooleans
public static ByteKeyBooleanMap asByteKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to boolean values.



asByteKeyBytes
public static ByteKeyByteMap asByteKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to byte values.



asByteKeyChars
public static ByteKeyCharMap asByteKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to char values.



asByteKeyDoubles
public static ByteKeyDoubleMap asByteKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to double values.



asByteKeyFloats
public static ByteKeyFloatMap asByteKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to float values.



asByteKeyInts
public static ByteKeyIntMap asByteKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to int values.



asByteKeyLongs
public static ByteKeyLongMap asByteKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to long values.



asByteKeyShorts
public static ByteKeyShortMap asByteKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map frombyte keys to short values.



asByteKeys
public static ByteKeyMap asByteKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from byte keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asBytes
public static ByteIterator asBytes(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive byte values.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator to an iterator overprimitive byte values.



asBytes
public static ByteCollection asBytes(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive byte values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive byte values.



asBytes
public static ByteListIterator asBytes(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive byte values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive byte values.



asBytes
public static ByteSet asBytes(Set set)(Code)
Returns an adaption of a set to a set of primitive byte values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive byte values.



asBytes
public static ByteSortedSet asBytes(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive byte values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive byte values.
since:
   1.2



asBytes
public static ByteList asBytes(List list)(Code)
Returns an adaption of a list to a list of primitive byte values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive byte values.



asCharKeyBooleans
public static CharKeyBooleanMap asCharKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to boolean values.



asCharKeyBytes
public static CharKeyByteMap asCharKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to byte values.



asCharKeyChars
public static CharKeyCharMap asCharKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to char values.



asCharKeyDoubles
public static CharKeyDoubleMap asCharKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to double values.



asCharKeyFloats
public static CharKeyFloatMap asCharKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to float values.



asCharKeyInts
public static CharKeyIntMap asCharKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to int values.



asCharKeyLongs
public static CharKeyLongMap asCharKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to long values.



asCharKeyShorts
public static CharKeyShortMap asCharKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromchar keys to short values.



asCharKeys
public static CharKeyMap asCharKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from char keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asChars
public static CharIterator asChars(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive char values. an adaption of an iterator to an iterator overprimitive char values.



asChars
public static CharCollection asChars(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive char values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive char values.



asChars
public static CharListIterator asChars(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive char values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive char values.



asChars
public static CharSet asChars(Set set)(Code)
Returns an adaption of a set to a set of primitive char values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive char values.



asChars
public static CharSortedSet asChars(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive char values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive char values.
since:
   1.2



asChars
public static CharList asChars(List list)(Code)
Returns an adaption of a list to a list of primitive char values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive char values.



asDoubleKeyBooleans
public static DoubleKeyBooleanMap asDoubleKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to boolean values.



asDoubleKeyBytes
public static DoubleKeyByteMap asDoubleKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to byte values.



asDoubleKeyChars
public static DoubleKeyCharMap asDoubleKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to char values.



asDoubleKeyDoubles
public static DoubleKeyDoubleMap asDoubleKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to double values.



asDoubleKeyFloats
public static DoubleKeyFloatMap asDoubleKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to float values.



asDoubleKeyInts
public static DoubleKeyIntMap asDoubleKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to int values.



asDoubleKeyLongs
public static DoubleKeyLongMap asDoubleKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to long values.



asDoubleKeyShorts
public static DoubleKeyShortMap asDoubleKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromdouble keys to short values.



asDoubleKeys
public static DoubleKeyMap asDoubleKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from double keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asDoubles
public static DoubleIterator asDoubles(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive double values.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator to an iterator overprimitive double values.



asDoubles
public static DoubleCollection asDoubles(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive double values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive double values.



asDoubles
public static DoubleListIterator asDoubles(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive double values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive double values.



asDoubles
public static DoubleSet asDoubles(Set set)(Code)
Returns an adaption of a set to a set of primitive double values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive double values.



asDoubles
public static DoubleSortedSet asDoubles(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive double values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive double values.
since:
   1.2



asDoubles
public static DoubleList asDoubles(List list)(Code)
Returns an adaption of a list to a list of primitive double values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive double values.



asFloatKeyBooleans
public static FloatKeyBooleanMap asFloatKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to boolean values.



asFloatKeyBytes
public static FloatKeyByteMap asFloatKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to byte values.



asFloatKeyChars
public static FloatKeyCharMap asFloatKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to char values.



asFloatKeyDoubles
public static FloatKeyDoubleMap asFloatKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to double values.



asFloatKeyFloats
public static FloatKeyFloatMap asFloatKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to float values.



asFloatKeyInts
public static FloatKeyIntMap asFloatKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to int values.



asFloatKeyLongs
public static FloatKeyLongMap asFloatKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to long values.



asFloatKeyShorts
public static FloatKeyShortMap asFloatKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromfloat keys to short values.



asFloatKeys
public static FloatKeyMap asFloatKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from float keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asFloats
public static FloatIterator asFloats(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive float values.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator to an iterator overprimitive float values.



asFloats
public static FloatCollection asFloats(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive float values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive float values.



asFloats
public static FloatListIterator asFloats(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive float values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive float values.



asFloats
public static FloatSet asFloats(Set set)(Code)
Returns an adaption of a set to a set of primitive float values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive float values.



asFloats
public static FloatSortedSet asFloats(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive float values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive float values.
since:
   1.2



asFloats
public static FloatList asFloats(List list)(Code)
Returns an adaption of a list to a list of primitive float values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive float values.



asIntKeyBooleans
public static IntKeyBooleanMap asIntKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to boolean values.



asIntKeyBytes
public static IntKeyByteMap asIntKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to byte values.



asIntKeyChars
public static IntKeyCharMap asIntKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to char values.



asIntKeyDoubles
public static IntKeyDoubleMap asIntKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to double values.



asIntKeyFloats
public static IntKeyFloatMap asIntKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to float values.



asIntKeyInts
public static IntKeyIntMap asIntKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to int values.



asIntKeyLongs
public static IntKeyLongMap asIntKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to long values.



asIntKeyShorts
public static IntKeyShortMap asIntKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromint keys to short values.



asIntKeys
public static IntKeyMap asIntKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from int keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asInts
public static IntIterator asInts(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive int values.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator to an iterator overprimitive int values.



asInts
public static IntCollection asInts(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive int values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive int values.



asInts
public static IntListIterator asInts(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive int values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive int values.



asInts
public static IntSet asInts(Set set)(Code)
Returns an adaption of a set to a set of primitive int values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive int values.



asInts
public static IntSortedSet asInts(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive int values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive int values.
since:
   1.2



asInts
public static IntList asInts(List list)(Code)
Returns an adaption of a list to a list of primitive int values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive int values.



asLongKeyBooleans
public static LongKeyBooleanMap asLongKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to boolean values.



asLongKeyBytes
public static LongKeyByteMap asLongKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to byte values.



asLongKeyChars
public static LongKeyCharMap asLongKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to char values.



asLongKeyDoubles
public static LongKeyDoubleMap asLongKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to double values.



asLongKeyFloats
public static LongKeyFloatMap asLongKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to float values.



asLongKeyInts
public static LongKeyIntMap asLongKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to int values.



asLongKeyLongs
public static LongKeyLongMap asLongKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to long values.



asLongKeyShorts
public static LongKeyShortMap asLongKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromlong keys to short values.



asLongKeys
public static LongKeyMap asLongKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from long keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asLongs
public static LongIterator asLongs(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive long values.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator to an iterator overprimitive long values.



asLongs
public static LongCollection asLongs(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive long values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive long values.



asLongs
public static LongListIterator asLongs(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive long values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive long values.



asLongs
public static LongSet asLongs(Set set)(Code)
Returns an adaption of a set to a set of primitive long values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive long values.



asLongs
public static LongSortedSet asLongs(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive long values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive long values.
since:
   1.2



asLongs
public static LongList asLongs(List list)(Code)
Returns an adaption of a list to a list of primitive long values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive long values.



asObjectKeyBooleans
public static ObjectKeyBooleanMap asObjectKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to boolean values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjectKeyBytes
public static ObjectKeyByteMap asObjectKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to byte values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjectKeyChars
public static ObjectKeyCharMap asObjectKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to char values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjectKeyDoubles
public static ObjectKeyDoubleMap asObjectKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to double values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjectKeyFloats
public static ObjectKeyFloatMap asObjectKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to float values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjectKeyInts
public static ObjectKeyIntMap asObjectKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to int values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjectKeyLongs
public static ObjectKeyLongMap asObjectKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to long values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjectKeyShorts
public static ObjectKeyShortMap asObjectKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from object keys to short values.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Iterator asObjects(BooleanIterator iterator)(Code)
Returns an adaption of an iterator over primitive boolean values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitiveboolean values to an iterator.



asObjects
public static Iterator asObjects(CharIterator iterator)(Code)
Returns an adaption of an iterator over primitive char values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitivechar values to an iterator.



asObjects
public static Iterator asObjects(ByteIterator iterator)(Code)
Returns an adaption of an iterator over primitive byte values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitivebyte values to an iterator.



asObjects
public static Iterator asObjects(ShortIterator iterator)(Code)
Returns an adaption of an iterator over primitive short values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitiveshort values to an iterator.



asObjects
public static Iterator asObjects(IntIterator iterator)(Code)
Returns an adaption of an iterator over primitive int values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitiveint values to an iterator.



asObjects
public static Iterator asObjects(LongIterator iterator)(Code)
Returns an adaption of an iterator over primitive long values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitivelong values to an iterator.



asObjects
public static Iterator asObjects(FloatIterator iterator)(Code)
Returns an adaption of an iterator over primitive float values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitivefloat values to an iterator.



asObjects
public static Iterator asObjects(DoubleIterator iterator)(Code)
Returns an adaption of an iterator over primitive double values to an iterator.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator over primitivedouble values to an iterator.



asObjects
public static Collection asObjects(BooleanCollection collection)(Code)
Returns an adaption of a primitive collection of boolean values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of booleanvalues to a collection.



asObjects
public static Collection asObjects(CharCollection collection)(Code)
Returns an adaption of a primitive collection of char values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of charvalues to a collection.



asObjects
public static Collection asObjects(ByteCollection collection)(Code)
Returns an adaption of a primitive collection of byte values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of bytevalues to a collection.



asObjects
public static Collection asObjects(ShortCollection collection)(Code)
Returns an adaption of a primitive collection of short values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of shortvalues to a collection.



asObjects
public static Collection asObjects(IntCollection collection)(Code)
Returns an adaption of a primitive collection of int values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of intvalues to a collection.



asObjects
public static Collection asObjects(LongCollection collection)(Code)
Returns an adaption of a primitive collection of long values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of longvalues to a collection.



asObjects
public static Collection asObjects(FloatCollection collection)(Code)
Returns an adaption of a primitive collection of float values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of floatvalues to a collection.



asObjects
public static Collection asObjects(DoubleCollection collection)(Code)
Returns an adaption of a primitive collection of double values to a collection.
Parameters:
  collection - the collection to adapt. an adaption of a primitive collection of doublevalues to a collection.



asObjects
public static ListIterator asObjects(BooleanListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive boolean values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive boolean values to a list iterator.



asObjects
public static ListIterator asObjects(CharListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive char values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive char values to a list iterator.



asObjects
public static ListIterator asObjects(ByteListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive byte values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive byte values to a list iterator.



asObjects
public static ListIterator asObjects(ShortListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive short values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive short values to a list iterator.



asObjects
public static ListIterator asObjects(IntListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive int values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive int values to a list iterator.



asObjects
public static ListIterator asObjects(LongListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive long values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive long values to a list iterator.



asObjects
public static ListIterator asObjects(FloatListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive float values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive float values to a list iterator.



asObjects
public static ListIterator asObjects(DoubleListIterator iterator)(Code)
Returns an adaption of a list iterator over primitive double values to a list iterator.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator overprimitive double values to a list iterator.



asObjects
public static Set asObjects(BooleanSet set)(Code)
Returns an adaption of a set of primitive boolean values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive boolean valuesto a set.



asObjects
public static Set asObjects(CharSet set)(Code)
Returns an adaption of a set of primitive char values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive char valuesto a set.



asObjects
public static Set asObjects(ByteSet set)(Code)
Returns an adaption of a set of primitive byte values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive byte valuesto a set.



asObjects
public static Set asObjects(ShortSet set)(Code)
Returns an adaption of a set of primitive short values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive short valuesto a set.



asObjects
public static Set asObjects(IntSet set)(Code)
Returns an adaption of a set of primitive int values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive int valuesto a set.



asObjects
public static Set asObjects(LongSet set)(Code)
Returns an adaption of a set of primitive long values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive long valuesto a set.



asObjects
public static Set asObjects(FloatSet set)(Code)
Returns an adaption of a set of primitive float values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive float valuesto a set.



asObjects
public static Set asObjects(DoubleSet set)(Code)
Returns an adaption of a set of primitive double values to a set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive double valuesto a set.



asObjects
public static SortedSet asObjects(BooleanSortedSet set)(Code)
Returns an adaption of a sorted set of primitive boolean values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive boolean valuesto a set.
since:
   1.2



asObjects
public static SortedSet asObjects(CharSortedSet set)(Code)
Returns an adaption of a sorted set of primitive char values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive char valuesto a set.
since:
   1.2



asObjects
public static SortedSet asObjects(ByteSortedSet set)(Code)
Returns an adaption of a sorted set of primitive byte values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive byte valuesto a set.
since:
   1.2



asObjects
public static SortedSet asObjects(ShortSortedSet set)(Code)
Returns an adaption of a sorted set of primitive short values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive short valuesto a set.
since:
   1.2



asObjects
public static SortedSet asObjects(IntSortedSet set)(Code)
Returns an adaption of a sorted set of primitive int values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive int valuesto a set.
since:
   1.2



asObjects
public static SortedSet asObjects(LongSortedSet set)(Code)
Returns an adaption of a sorted set of primitive long values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive long valuesto a set.
since:
   1.2



asObjects
public static SortedSet asObjects(FloatSortedSet set)(Code)
Returns an adaption of a sorted set of primitive float values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive float valuesto a set.
since:
   1.2



asObjects
public static SortedSet asObjects(DoubleSortedSet set)(Code)
Returns an adaption of a sorted set of primitive double values to a sorted set.
Parameters:
  set - the set to adapt. an adaption of a set of primitive double valuesto a set.
since:
   1.2



asObjects
public static List asObjects(BooleanList list)(Code)
Returns an adaption of a list of primitive boolean values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive boolean valuesto a list.



asObjects
public static List asObjects(CharList list)(Code)
Returns an adaption of a list of primitive char values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive char valuesto a list.



asObjects
public static List asObjects(ByteList list)(Code)
Returns an adaption of a list of primitive byte values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive byte valuesto a list.



asObjects
public static List asObjects(ShortList list)(Code)
Returns an adaption of a list of primitive short values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive short valuesto a list.



asObjects
public static List asObjects(IntList list)(Code)
Returns an adaption of a list of primitive int values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive int valuesto a list.



asObjects
public static List asObjects(LongList list)(Code)
Returns an adaption of a list of primitive long values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive long valuesto a list.



asObjects
public static List asObjects(FloatList list)(Code)
Returns an adaption of a list of primitive float values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive float valuesto a list.



asObjects
public static List asObjects(DoubleList list)(Code)
Returns an adaption of a list of primitive double values to a list.
Parameters:
  list - the list to adapt. an adaption of a list of primitive double valuesto a list.



asObjects
public static Map asObjects(BooleanKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from boolean keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(BooleanKeyByteMap map)(Code)
Returns an adaption of a primitive map from boolean keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(BooleanKeyShortMap map)(Code)
Returns an adaption of a primitive map from boolean keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(BooleanKeyIntMap map)(Code)
Returns an adaption of a primitive map from boolean keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(BooleanKeyLongMap map)(Code)
Returns an adaption of a primitive map from boolean keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(BooleanKeyFloatMap map)(Code)
Returns an adaption of a primitive map from boolean keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(BooleanKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from boolean keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from char keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyCharMap map)(Code)
Returns an adaption of a primitive map from char keys to char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyByteMap map)(Code)
Returns an adaption of a primitive map from char keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyShortMap map)(Code)
Returns an adaption of a primitive map from char keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyIntMap map)(Code)
Returns an adaption of a primitive map from char keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyLongMap map)(Code)
Returns an adaption of a primitive map from char keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyFloatMap map)(Code)
Returns an adaption of a primitive map from char keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(CharKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from char keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from byte keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyCharMap map)(Code)
Returns an adaption of a primitive map from byte keys to char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyByteMap map)(Code)
Returns an adaption of a primitive map from byte keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyShortMap map)(Code)
Returns an adaption of a primitive map from byte keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyIntMap map)(Code)
Returns an adaption of a primitive map from byte keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyLongMap map)(Code)
Returns an adaption of a primitive map from byte keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyFloatMap map)(Code)
Returns an adaption of a primitive map from byte keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ByteKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from byte keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from short keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyCharMap map)(Code)
Returns an adaption of a primitive map from short keys to char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyByteMap map)(Code)
Returns an adaption of a primitive map from short keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyShortMap map)(Code)
Returns an adaption of a primitive map from short keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyIntMap map)(Code)
Returns an adaption of a primitive map from short keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyLongMap map)(Code)
Returns an adaption of a primitive map from short keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyFloatMap map)(Code)
Returns an adaption of a primitive map from short keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(ShortKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from short keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from int keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyCharMap map)(Code)
Returns an adaption of a primitive map from int keys to char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyByteMap map)(Code)
Returns an adaption of a primitive map from int keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyShortMap map)(Code)
Returns an adaption of a primitive map from int keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyIntMap map)(Code)
Returns an adaption of a primitive map from int keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyLongMap map)(Code)
Returns an adaption of a primitive map from int keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyFloatMap map)(Code)
Returns an adaption of a primitive map from int keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(IntKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from int keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from long keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyCharMap map)(Code)
Returns an adaption of a primitive map from long keys to char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyByteMap map)(Code)
Returns an adaption of a primitive map from long keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyShortMap map)(Code)
Returns an adaption of a primitive map from long keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyIntMap map)(Code)
Returns an adaption of a primitive map from long keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyLongMap map)(Code)
Returns an adaption of a primitive map from long keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyFloatMap map)(Code)
Returns an adaption of a primitive map from long keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(LongKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from long keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from float keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyCharMap map)(Code)
Returns an adaption of a primitive map from float keys to char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyByteMap map)(Code)
Returns an adaption of a primitive map from float keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyShortMap map)(Code)
Returns an adaption of a primitive map from float keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyIntMap map)(Code)
Returns an adaption of a primitive map from float keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyLongMap map)(Code)
Returns an adaption of a primitive map from float keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyFloatMap map)(Code)
Returns an adaption of a primitive map from float keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(FloatKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from float keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyBooleanMap map)(Code)
Returns an adaption of a primitive map from double keys to boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyCharMap map)(Code)
Returns an adaption of a primitive map from double keys to char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyByteMap map)(Code)
Returns an adaption of a primitive map from double keys to byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyShortMap map)(Code)
Returns an adaption of a primitive map from double keys to short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyIntMap map)(Code)
Returns an adaption of a primitive map from double keys to int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyLongMap map)(Code)
Returns an adaption of a primitive map from double keys to long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyFloatMap map)(Code)
Returns an adaption of a primitive map from double keys to float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(DoubleKeyDoubleMap map)(Code)
Returns an adaption of a primitive map from double keys to double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitivemap to a map.



asObjects
public static Map asObjects(BooleanKeyMap map)(Code)
Returns an adaption of a primitive map of boolean keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(CharKeyMap map)(Code)
Returns an adaption of a primitive map of char keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(ByteKeyMap map)(Code)
Returns an adaption of a primitive map of byte keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(ShortKeyMap map)(Code)
Returns an adaption of a primitive map of short keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(IntKeyMap map)(Code)
Returns an adaption of a primitive map of int keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(LongKeyMap map)(Code)
Returns an adaption of a primitive map of long keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(FloatKeyMap map)(Code)
Returns an adaption of a primitive map of float keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(DoubleKeyMap map)(Code)
Returns an adaption of a primitive map of double keys to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.



asObjects
public static Map asObjects(ObjectKeyBooleanMap map)(Code)
Returns an adaption of a primitive map of object keys and boolean values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Map asObjects(ObjectKeyCharMap map)(Code)
Returns an adaption of a primitive map of object keys and char values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Map asObjects(ObjectKeyByteMap map)(Code)
Returns an adaption of a primitive map of object keys and byte values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Map asObjects(ObjectKeyShortMap map)(Code)
Returns an adaption of a primitive map of object keys and short values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Map asObjects(ObjectKeyIntMap map)(Code)
Returns an adaption of a primitive map of object keys and int values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Map asObjects(ObjectKeyLongMap map)(Code)
Returns an adaption of a primitive map of object keys and long values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Map asObjects(ObjectKeyFloatMap map)(Code)
Returns an adaption of a primitive map of object keys and float values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asObjects
public static Map asObjects(ObjectKeyDoubleMap map)(Code)
Returns an adaption of a primitive map of object keys and double values to a map.
Parameters:
  map - the primitive map to adapt. an adaption of the specified primitive mapto a map.
throws:
  NullPointerException - if map is null.
since:
   1.1



asShortKeyBooleans
public static ShortKeyBooleanMap asShortKeyBooleans(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to boolean values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to boolean values.



asShortKeyBytes
public static ShortKeyByteMap asShortKeyBytes(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to byte values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to byte values.



asShortKeyChars
public static ShortKeyCharMap asShortKeyChars(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to char values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to char values.



asShortKeyDoubles
public static ShortKeyDoubleMap asShortKeyDoubles(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to double values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to double values.



asShortKeyFloats
public static ShortKeyFloatMap asShortKeyFloats(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to float values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to float values.



asShortKeyInts
public static ShortKeyIntMap asShortKeyInts(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to int values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to int values.



asShortKeyLongs
public static ShortKeyLongMap asShortKeyLongs(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to long values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to long values.



asShortKeyShorts
public static ShortKeyShortMap asShortKeyShorts(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to short values.
Parameters:
  map - the map to adapt. an adaption of a map to a primitive map fromshort keys to short values.



asShortKeys
public static ShortKeyMap asShortKeys(Map map)(Code)
Returns an adaption of a map to a primitive map from short keys to objects.
Parameters:
  map - the map to adapt to a primitive map. an adaption of the specified map toa primitive map.



asShorts
public static ShortIterator asShorts(Iterator iterator)(Code)
Returns an adaption of an iterator to an iterator over primitive short values.
Parameters:
  iterator - the iterator to adapt. an adaption of an iterator to an iterator overprimitive short values.



asShorts
public static ShortCollection asShorts(Collection collection)(Code)
Returns an adaption of a collection to a collection of primitive short values.
Parameters:
  collection - the collection to adapt. an adaption of a collection to a collection ofprimitive short values.



asShorts
public static ShortListIterator asShorts(ListIterator iterator)(Code)
Returns an adaption of a list iterator to a list iterator over primitive short values.
Parameters:
  iterator - the list iterator to adapt. an adaption of a list iterator to a list iterator overprimitive short values.



asShorts
public static ShortSet asShorts(Set set)(Code)
Returns an adaption of a set to a set of primitive short values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive short values.



asShorts
public static ShortSortedSet asShorts(SortedSet set)(Code)
Returns an adaption of a sorted set to a sorted set of primitive short values.
Parameters:
  set - the set to adapt. an adaption of a set to a set ofprimitive short values.
since:
   1.2



asShorts
public static ShortList asShorts(List list)(Code)
Returns an adaption of a list to a list of primitive short values.
Parameters:
  list - the list to adapt. an adaption of a list to a list ofprimitive short values.



isBooleanAdaptable
public static boolean isBooleanAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of boolean values. For a collection to be adaptable it can only contain values of class Boolean Boolean and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a BooleanCollection BooleanCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asBooleans(Collection)
See Also:   Adapter.asBooleans(List)
See Also:   Adapter.asBooleans(Set)



isBooleanKeyAdaptable
public static boolean isBooleanKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys. For a map to be adaptable it can only contain keys of class Boolean Boolean and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a BooleanKeyMap BooleanKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeys(Map)



isBooleanKeyBooleanAdaptable
public static boolean isBooleanKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and boolean values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyBooleanMap BooleanKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyBooleans(Map)



isBooleanKeyByteAdaptable
public static boolean isBooleanKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and byte values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyByteMap BooleanKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyBytes(Map)



isBooleanKeyCharAdaptable
public static boolean isBooleanKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and char values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyCharMap BooleanKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyChars(Map)



isBooleanKeyDoubleAdaptable
public static boolean isBooleanKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and double values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyDoubleMap BooleanKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyDoubles(Map)



isBooleanKeyFloatAdaptable
public static boolean isBooleanKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and float values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyFloatMap BooleanKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyFloats(Map)



isBooleanKeyIntAdaptable
public static boolean isBooleanKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and int values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyIntMap BooleanKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyInts(Map)



isBooleanKeyLongAdaptable
public static boolean isBooleanKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and long values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyLongMap BooleanKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyLongs(Map)



isBooleanKeyShortAdaptable
public static boolean isBooleanKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with boolean keys and short values. For a map to be adaptable it can only contain keys of class Boolean Boolean , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aBooleanKeyShortMap BooleanKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asBooleanKeyShorts(Map)



isByteAdaptable
public static boolean isByteAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of byte values. For a collection to be adaptable it can only contain values of class Byte Byte and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a ByteCollection ByteCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asBytes(Collection)
See Also:   Adapter.asBytes(List)
See Also:   Adapter.asBytes(Set)



isByteKeyAdaptable
public static boolean isByteKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys. For a map to be adaptable it can only contain keys of class Byte Byte and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a ByteKeyMap ByteKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeys(Map)



isByteKeyBooleanAdaptable
public static boolean isByteKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and boolean values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyBooleanMap ByteKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyBooleans(Map)



isByteKeyByteAdaptable
public static boolean isByteKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and byte values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyByteMap ByteKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyBytes(Map)



isByteKeyCharAdaptable
public static boolean isByteKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and char values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyCharMap ByteKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyChars(Map)



isByteKeyDoubleAdaptable
public static boolean isByteKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and double values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyDoubleMap ByteKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyDoubles(Map)



isByteKeyFloatAdaptable
public static boolean isByteKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and float values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyFloatMap ByteKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyFloats(Map)



isByteKeyIntAdaptable
public static boolean isByteKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and int values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyIntMap ByteKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyInts(Map)



isByteKeyLongAdaptable
public static boolean isByteKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and long values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyLongMap ByteKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyLongs(Map)



isByteKeyShortAdaptable
public static boolean isByteKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with byte keys and short values. For a map to be adaptable it can only contain keys of class Byte Byte , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aByteKeyShortMap ByteKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asByteKeyShorts(Map)



isCharAdaptable
public static boolean isCharAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of char values. For a collection to be adaptable it can only contain values of class Character Character and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a CharCollection CharCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asChars(Collection)
See Also:   Adapter.asChars(List)
See Also:   Adapter.asChars(Set)



isCharKeyAdaptable
public static boolean isCharKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys. For a map to be adaptable it can only contain keys of class Character Character and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a CharKeyMap CharKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeys(Map)



isCharKeyBooleanAdaptable
public static boolean isCharKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and boolean values. For a map to be adaptable it can only contain keys of class Character Character , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyBooleanMap CharKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyBooleans(Map)



isCharKeyByteAdaptable
public static boolean isCharKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and byte values. For a map to be adaptable it can only contain keys of class Character Character , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyByteMap CharKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyBytes(Map)



isCharKeyCharAdaptable
public static boolean isCharKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and char values. For a map to be adaptable it can only contain keys of class Character Character , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyCharMap CharKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyChars(Map)



isCharKeyDoubleAdaptable
public static boolean isCharKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and double values. For a map to be adaptable it can only contain keys of class Character Character , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyDoubleMap CharKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyDoubles(Map)



isCharKeyFloatAdaptable
public static boolean isCharKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and float values. For a map to be adaptable it can only contain keys of class Character Character , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyFloatMap CharKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyFloats(Map)



isCharKeyIntAdaptable
public static boolean isCharKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and int values. For a map to be adaptable it can only contain keys of class Character Character , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyIntMap CharKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyInts(Map)



isCharKeyLongAdaptable
public static boolean isCharKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and long values. For a map to be adaptable it can only contain keys of class Character Character , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyLongMap CharKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyLongs(Map)



isCharKeyShortAdaptable
public static boolean isCharKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with char keys and short values. For a map to be adaptable it can only contain keys of class Character Character , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aCharKeyShortMap CharKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asCharKeyShorts(Map)



isDoubleAdaptable
public static boolean isDoubleAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of double values. For a collection to be adaptable it can only contain values of class Double Double and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a DoubleCollection DoubleCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asDoubles(Collection)
See Also:   Adapter.asDoubles(List)
See Also:   Adapter.asDoubles(Set)



isDoubleKeyAdaptable
public static boolean isDoubleKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys. For a map to be adaptable it can only contain keys of class Double Double and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a DoubleKeyMap DoubleKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeys(Map)



isDoubleKeyBooleanAdaptable
public static boolean isDoubleKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and boolean values. For a map to be adaptable it can only contain keys of class Double Double , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyBooleanMap DoubleKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyBooleans(Map)



isDoubleKeyByteAdaptable
public static boolean isDoubleKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and byte values. For a map to be adaptable it can only contain keys of class Double Double , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyByteMap DoubleKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyBytes(Map)



isDoubleKeyCharAdaptable
public static boolean isDoubleKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and char values. For a map to be adaptable it can only contain keys of class Double Double , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyCharMap DoubleKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyChars(Map)



isDoubleKeyDoubleAdaptable
public static boolean isDoubleKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and double values. For a map to be adaptable it can only contain keys of class Double Double , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyDoubleMap DoubleKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyDoubles(Map)



isDoubleKeyFloatAdaptable
public static boolean isDoubleKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and float values. For a map to be adaptable it can only contain keys of class Double Double , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyFloatMap DoubleKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyFloats(Map)



isDoubleKeyIntAdaptable
public static boolean isDoubleKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and int values. For a map to be adaptable it can only contain keys of class Double Double , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyIntMap DoubleKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyInts(Map)



isDoubleKeyLongAdaptable
public static boolean isDoubleKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and long values. For a map to be adaptable it can only contain keys of class Double Double , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyLongMap DoubleKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyLongs(Map)



isDoubleKeyShortAdaptable
public static boolean isDoubleKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with double keys and short values. For a map to be adaptable it can only contain keys of class Double Double , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aDoubleKeyShortMap DoubleKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asDoubleKeyShorts(Map)



isFloatAdaptable
public static boolean isFloatAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of float values. For a collection to be adaptable it can only contain values of class Float Float and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a FloatCollection FloatCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asFloats(Collection)
See Also:   Adapter.asFloats(List)
See Also:   Adapter.asFloats(Set)



isFloatKeyAdaptable
public static boolean isFloatKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys. For a map to be adaptable it can only contain keys of class Float Float and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a FloatKeyMap FloatKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeys(Map)



isFloatKeyBooleanAdaptable
public static boolean isFloatKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and boolean values. For a map to be adaptable it can only contain keys of class Float Float , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyBooleanMap FloatKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyBooleans(Map)



isFloatKeyByteAdaptable
public static boolean isFloatKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and byte values. For a map to be adaptable it can only contain keys of class Float Float , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyByteMap FloatKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyBytes(Map)



isFloatKeyCharAdaptable
public static boolean isFloatKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and char values. For a map to be adaptable it can only contain keys of class Float Float , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyCharMap FloatKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyChars(Map)



isFloatKeyDoubleAdaptable
public static boolean isFloatKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and double values. For a map to be adaptable it can only contain keys of class Float Float , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyDoubleMap FloatKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyDoubles(Map)



isFloatKeyFloatAdaptable
public static boolean isFloatKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and float values. For a map to be adaptable it can only contain keys of class Float Float , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyFloatMap FloatKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyFloats(Map)



isFloatKeyIntAdaptable
public static boolean isFloatKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and int values. For a map to be adaptable it can only contain keys of class Float Float , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyIntMap FloatKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyInts(Map)



isFloatKeyLongAdaptable
public static boolean isFloatKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and long values. For a map to be adaptable it can only contain keys of class Float Float , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyLongMap FloatKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyLongs(Map)



isFloatKeyShortAdaptable
public static boolean isFloatKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with float keys and short values. For a map to be adaptable it can only contain keys of class Float Float , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aFloatKeyShortMap FloatKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asFloatKeyShorts(Map)



isIntAdaptable
public static boolean isIntAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of int values. For a collection to be adaptable it can only contain values of class Integer Integer and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a IntCollection IntCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asInts(Collection)
See Also:   Adapter.asInts(List)
See Also:   Adapter.asInts(Set)



isIntKeyAdaptable
public static boolean isIntKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys. For a map to be adaptable it can only contain keys of class Integer Integer and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a IntKeyMap IntKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeys(Map)



isIntKeyBooleanAdaptable
public static boolean isIntKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and boolean values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyBooleanMap IntKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyBooleans(Map)



isIntKeyByteAdaptable
public static boolean isIntKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and byte values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyByteMap IntKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyBytes(Map)



isIntKeyCharAdaptable
public static boolean isIntKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and char values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyCharMap IntKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyChars(Map)



isIntKeyDoubleAdaptable
public static boolean isIntKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and double values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyDoubleMap IntKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyDoubles(Map)



isIntKeyFloatAdaptable
public static boolean isIntKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and float values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyFloatMap IntKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyFloats(Map)



isIntKeyIntAdaptable
public static boolean isIntKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and int values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyIntMap IntKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyInts(Map)



isIntKeyLongAdaptable
public static boolean isIntKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and long values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyLongMap IntKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyLongs(Map)



isIntKeyShortAdaptable
public static boolean isIntKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with int keys and short values. For a map to be adaptable it can only contain keys of class Integer Integer , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aIntKeyShortMap IntKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asIntKeyShorts(Map)



isLongAdaptable
public static boolean isLongAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of long values. For a collection to be adaptable it can only contain values of class Long Long and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a LongCollection LongCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asLongs(Collection)
See Also:   Adapter.asLongs(List)
See Also:   Adapter.asLongs(Set)



isLongKeyAdaptable
public static boolean isLongKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys. For a map to be adaptable it can only contain keys of class Long Long and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a LongKeyMap LongKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeys(Map)



isLongKeyBooleanAdaptable
public static boolean isLongKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and boolean values. For a map to be adaptable it can only contain keys of class Long Long , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyBooleanMap LongKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyBooleans(Map)



isLongKeyByteAdaptable
public static boolean isLongKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and byte values. For a map to be adaptable it can only contain keys of class Long Long , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyByteMap LongKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyBytes(Map)



isLongKeyCharAdaptable
public static boolean isLongKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and char values. For a map to be adaptable it can only contain keys of class Long Long , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyCharMap LongKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyChars(Map)



isLongKeyDoubleAdaptable
public static boolean isLongKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and double values. For a map to be adaptable it can only contain keys of class Long Long , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyDoubleMap LongKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyDoubles(Map)



isLongKeyFloatAdaptable
public static boolean isLongKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and float values. For a map to be adaptable it can only contain keys of class Long Long , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyFloatMap LongKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyFloats(Map)



isLongKeyIntAdaptable
public static boolean isLongKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and int values. For a map to be adaptable it can only contain keys of class Long Long , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyIntMap LongKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyInts(Map)



isLongKeyLongAdaptable
public static boolean isLongKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and long values. For a map to be adaptable it can only contain keys of class Long Long , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyLongMap LongKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyLongs(Map)



isLongKeyShortAdaptable
public static boolean isLongKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with long keys and short values. For a map to be adaptable it can only contain keys of class Long Long , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aLongKeyShortMap LongKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asLongKeyShorts(Map)



isObjectKeyBooleanAdaptable
public static boolean isObjectKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and boolean values. For a map to be adaptable it can only contain values of class Boolean Boolean and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyBooleanMap ObjectKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isObjectKeyByteAdaptable
public static boolean isObjectKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and byte values. For a map to be adaptable it can only contain values of class Byte Byte and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyByteMap ObjectKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isObjectKeyCharAdaptable
public static boolean isObjectKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and char values. For a map to be adaptable it can only contain values of class Character Character and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyCharMap ObjectKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isObjectKeyDoubleAdaptable
public static boolean isObjectKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and double values. For a map to be adaptable it can only contain values of class Double Double and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyDoubleMap ObjectKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isObjectKeyFloatAdaptable
public static boolean isObjectKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and float values. For a map to be adaptable it can only contain values of class Float Float and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyFloatMap ObjectKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isObjectKeyIntAdaptable
public static boolean isObjectKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and int values. For a map to be adaptable it can only contain values of class Integer Integer and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyIntMap ObjectKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isObjectKeyLongAdaptable
public static boolean isObjectKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and long values. For a map to be adaptable it can only contain values of class Long Long and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyLongMap ObjectKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isObjectKeyShortAdaptable
public static boolean isObjectKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with object keys and short values. For a map to be adaptable it can only contain values of class Short Short and no null values.
Parameters:
  map - the map to examine. true if map is adaptable to aObjectKeyShortMap ObjectKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
since:
   1.1



isShortAdaptable
public static boolean isShortAdaptable(Collection collection)(Code)
Indicates whether a specified collection is adaptable to a primitive collection of short values. For a collection to be adaptable it can only contain values of class Short Short and no null values.
Parameters:
  collection - the collection to examine. true if collection is adaptable to a ShortCollection ShortCollection;returns false otherwise.
throws:
  NullPointerException - if collection is null.
See Also:   Adapter.asShorts(Collection)
See Also:   Adapter.asShorts(List)
See Also:   Adapter.asShorts(Set)



isShortKeyAdaptable
public static boolean isShortKeyAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys. For a map to be adaptable it can only contain keys of class Short Short and no null keys.
Parameters:
  map - the map to examine. true if map is adaptable to a ShortKeyMap ShortKeyMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeys(Map)



isShortKeyBooleanAdaptable
public static boolean isShortKeyBooleanAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and boolean values. For a map to be adaptable it can only contain keys of class Short Short , values of class Boolean Boolean , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyBooleanMap ShortKeyBooleanMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyBooleans(Map)



isShortKeyByteAdaptable
public static boolean isShortKeyByteAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and byte values. For a map to be adaptable it can only contain keys of class Short Short , values of class Byte Byte , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyByteMap ShortKeyByteMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyBytes(Map)



isShortKeyCharAdaptable
public static boolean isShortKeyCharAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and char values. For a map to be adaptable it can only contain keys of class Short Short , values of class Character Character , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyCharMap ShortKeyCharMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyChars(Map)



isShortKeyDoubleAdaptable
public static boolean isShortKeyDoubleAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and double values. For a map to be adaptable it can only contain keys of class Short Short , values of class Double Double , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyDoubleMap ShortKeyDoubleMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyDoubles(Map)



isShortKeyFloatAdaptable
public static boolean isShortKeyFloatAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and float values. For a map to be adaptable it can only contain keys of class Short Short , values of class Float Float , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyFloatMap ShortKeyFloatMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyFloats(Map)



isShortKeyIntAdaptable
public static boolean isShortKeyIntAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and int values. For a map to be adaptable it can only contain keys of class Short Short , values of class Integer Integer , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyIntMap ShortKeyIntMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyInts(Map)



isShortKeyLongAdaptable
public static boolean isShortKeyLongAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and long values. For a map to be adaptable it can only contain keys of class Short Short , values of class Long Long , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyLongMap ShortKeyLongMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyLongs(Map)



isShortKeyShortAdaptable
public static boolean isShortKeyShortAdaptable(Map map)(Code)
Indicates whether a specified map is adaptable to a primitive map with short keys and short values. For a map to be adaptable it can only contain keys of class Short Short , values of class Short Short , and no null keys or null values.
Parameters:
  map - the map to examine. true if map is adaptable to aShortKeyShortMap ShortKeyShortMap;returns false otherwise.
throws:
  NullPointerException - if map is null.
See Also:   Adapter.asShortKeyShorts(Map)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.