Java Doc for UnicodeMap.java in  » Internationalization-Localization » icu4j » com » ibm » icu » dev » test » util » 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 » Internationalization Localization » icu4j » com.ibm.icu.dev.test.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.ibm.icu.dev.test.util.UnicodeMap

UnicodeMap
final public class UnicodeMap implements Cloneable,Freezable,Externalizable(Code)
Class for mapping Unicode characters to values Much smaller storage than using HashMap, and much faster and more compact than a list of UnicodeSets.
author:
   Davis

Inner Class :public interface Composer
Inner Class :public static class MapIterator

Field Summary
final static  booleanASSERTIONS
    
final static  booleanDEBUG_WRITE
    
final static  longGROWTH_GAP
    
final static  longGROWTH_PERCENT
    


Method Summary
 void_checkInvariants()
    
public static  booleanareEqual(Object a, Object b)
    
public  UnicodeMapclear()
    
public  ObjectcloneAsThawed()
     Standard clone.
public  UnicodeMapcomposeWith(UnicodeMap other, Composer composer)
    
public  UnicodeMapcomposeWith(UnicodeSet set, Object value, Composer composer)
    
public  booleanequals(Object other)
    
static  intfindCommon(String last, String s)
    
public  Stringfold(String source)
     Change a new string from the source string according to the mappings.
public  Objectfreeze()
    
public  CollectiongetAvailableValues(Collection result)
     Returns the list of possible values.
public  CollectiongetAvailableValues()
    
public  booleangetErrorOnReset()
    
public  intgetHashCode(Object o)
    
public  UnicodeSetgetSet(Object value, UnicodeSet result)
     Returns the set associated with a given value.
public  UnicodeSetgetSet(Object value)
    
public  ObjectgetValue(int codepoint)
     Gets the value associated with a given code point.
public  inthashCode()
    
public  booleanisFrozen()
    
public  UnicodeSetkeySet()
    
public  UnicodeMapput(int codepoint, Object value)
     Sets the codepoint value.
public  UnicodeMapputAll(UnicodeSet codepoints, Object value)
     Adds bunch o' codepoints; otherwise like put.
public  UnicodeMapputAll(int startCodePoint, int endCodePoint, Object value)
     Adds bunch o' codepoints; otherwise like add.
public  UnicodeMapputAll(UnicodeProperty prop)
    
public  UnicodeMapputAll(UnicodeMap prop)
    
public  voidreadExternal(ObjectInput in1)
    
public  voidsetErrorOnReset(boolean errorOnReset)
    
public  UnicodeMapsetMissing(Object value)
     Set the currently unmapped Unicode code points to the given value.
public  StringtoString()
    
public  StringtoString(Comparator collected)
    
public  voidwriteExternal(ObjectOutput out1)
    

Field Detail
ASSERTIONS
final static boolean ASSERTIONS(Code)



DEBUG_WRITE
final static boolean DEBUG_WRITE(Code)



GROWTH_GAP
final static long GROWTH_GAP(Code)



GROWTH_PERCENT
final static long GROWTH_PERCENT(Code)





Method Detail
_checkInvariants
void _checkInvariants()(Code)



areEqual
public static boolean areEqual(Object a, Object b)(Code)



clear
public UnicodeMap clear()(Code)



cloneAsThawed
public Object cloneAsThawed()(Code)
Standard clone. Warning, as with Collections, does not do deep clone.



composeWith
public UnicodeMap composeWith(UnicodeMap other, Composer composer)(Code)



composeWith
public UnicodeMap composeWith(UnicodeSet set, Object value, Composer composer)(Code)



equals
public boolean equals(Object other)(Code)



findCommon
static int findCommon(String last, String s)(Code)



fold
public String fold(String source)(Code)
Change a new string from the source string according to the mappings. For each code point cp, if getValue(cp) is null, append the character, otherwise append getValue(cp).toString()
Parameters:
  source -



freeze
public Object freeze()(Code)



getAvailableValues
public Collection getAvailableValues(Collection result)(Code)
Returns the list of possible values. Deposits each non-null value into result. Creates result if it is null. Remember to clear result if you are not appending to existing collection.
Parameters:
  result - result



getAvailableValues
public Collection getAvailableValues()(Code)
Convenience method



getErrorOnReset
public boolean getErrorOnReset()(Code)
Returns the errorOnReset.



getHashCode
public int getHashCode(Object o)(Code)



getSet
public UnicodeSet getSet(Object value, UnicodeSet result)(Code)
Returns the set associated with a given value. Deposits into result if it is not null. Remember to clear if you just want the new values.
Parameters:
  value -
Parameters:
  result - result



getSet
public UnicodeSet getSet(Object value)(Code)



getValue
public Object getValue(int codepoint)(Code)
Gets the value associated with a given code point. Returns null, if there is no such value.
Parameters:
  codepoint - the value



hashCode
public int hashCode()(Code)



isFrozen
public boolean isFrozen()(Code)



keySet
public UnicodeSet keySet()(Code)



put
public UnicodeMap put(int codepoint, Object value)(Code)
Sets the codepoint value.
Parameters:
  codepoint -
Parameters:
  value - this (for chaining)



putAll
public UnicodeMap putAll(UnicodeSet codepoints, Object value)(Code)
Adds bunch o' codepoints; otherwise like put.
Parameters:
  codepoints -
Parameters:
  value - this (for chaining)



putAll
public UnicodeMap putAll(int startCodePoint, int endCodePoint, Object value)(Code)
Adds bunch o' codepoints; otherwise like add.
Parameters:
  startCodePoint -
Parameters:
  endCodePoint -
Parameters:
  value - this (for chaining)



putAll
public UnicodeMap putAll(UnicodeProperty prop)(Code)
Add all the (main) values from a Unicode property
Parameters:
  prop - the property to add to the map this (for chaining)



putAll
public UnicodeMap putAll(UnicodeMap prop)(Code)
Add all the (main) values from a Unicode property
Parameters:
  prop - the property to add to the map this (for chaining)



readExternal
public void readExternal(ObjectInput in1) throws IOException, ClassNotFoundException(Code)



setErrorOnReset
public void setErrorOnReset(boolean errorOnReset)(Code)

Parameters:
  errorOnReset - The errorOnReset to set.



setMissing
public UnicodeMap setMissing(Object value)(Code)
Set the currently unmapped Unicode code points to the given value.
Parameters:
  value - the value to set this (for chaining)



toString
public String toString()(Code)



toString
public String toString(Comparator collected)(Code)



writeExternal
public void writeExternal(ObjectOutput out1) throws IOException(Code)



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.