Java Doc for Comparator.java in  » Testing » KeY » java » 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 » Testing » KeY » java.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.util.Comparator

Comparator
public interface Comparator (Code)
Interface for objects that specify an ordering between objects. The ordering should be total, such that any two objects of the correct type can be compared, and the comparison is reflexive, anti-symmetric, and transitive. It is also recommended that the comparator be consistent with equals, although this is not a strict requirement. A relation is consistent with equals if these two statements always have the same results (if no exceptions occur):
compare((Object) e1, (Object) e2) == 0 and e1.equals((Object) e2)
Comparators that violate consistency with equals may cause strange behavior in sorted lists and sets. For example, a case-sensitive dictionary order comparison of Strings is consistent with equals, but if it is case-insensitive it is not, because "abc" and "ABC" compare as equal even though "abc".equals("ABC") returns false.

In general, Comparators should be Serializable, because when they are passed to Serializable data structures such as SortedMap or SortedSet, the entire data structure will only serialize correctly if the comparator is Serializable.
author:
   Original author unknown
author:
   Eric Blake
See Also:   Comparable
See Also:   TreeMap
See Also:   TreeSet
See Also:   SortedMap
See Also:   SortedSet
See Also:   Arrays.sort(Object[]Comparator)
See Also:   java.io.Serializable
since:
   1.2





Method Summary
 intcompare(Object o1, Object o2)
     Return an integer that is negative, zero or positive depending on whether the first argument is less than, equal to or greater than the second according to this ordering.
 booleanequals(Object obj)
     Return true if the object is equal to this object.



Method Detail
compare
int compare(Object o1, Object o2)(Code)
Return an integer that is negative, zero or positive depending on whether the first argument is less than, equal to or greater than the second according to this ordering. This method should obey the following contract:
  • if compare(a, b) < 0 then compare(b, a) > 0
  • if compare(a, b) throws an exception, so does compare(b, a)
  • if compare(a, b) < 0 and compare(b, c) < 0 then compare(a, c) < 0
  • if compare(a, b) == 0 then compare(a, c) and compare(b, c) must have the same sign
  • To be consistent with equals, the following additional constraint is in place:
    • if a.equals(b) or both a and b are null, then compare(a, b) == 0.

    Although it is permissible for a comparator to provide an order inconsistent with equals, that should be documented.
    Parameters:
      o1 - the first object
    Parameters:
      o2 - the second object the comparison
    throws:
      ClassCastException - if the elements are not of types that can becompared by this ordering.




equals
boolean equals(Object obj)(Code)
Return true if the object is equal to this object. To be considered equal, the argument object must satisfy the constraints of Object.equals(), be a Comparator, and impose the same ordering as this Comparator. The default implementation inherited from Object is usually adequate.
Parameters:
  obj - The object true if it is a Comparator that imposes the same order
See Also:   Object.equals(Object)



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