Source Code Cross Referenced for GreaterEqual.java in  » Development » jga-Generic-Algorithms » net » sf » jga » fn » comparison » 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 » jga Generic Algorithms » net.sf.jga.fn.comparison 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // ============================================================================
002:        // $Id: GreaterEqual.java,v 1.16 2006/01/08 00:52:25 davidahall Exp $
003:        // Copyright (c) 2002-2005  David A. Hall
004:        // ============================================================================
005:        // The contents of this file are subject to the Common Development and
006:        // Distribution License (CDDL), Version 1.0 (the License); you may not use this 
007:        // file except in compliance with the License.  You should have received a copy
008:        // of the the License along with this file: if not, a copy of the License is 
009:        // available from Sun Microsystems, Inc.
010:        //
011:        // http://www.sun.com/cddl/cddl.html
012:        //
013:        // From time to time, the license steward (initially Sun Microsystems, Inc.) may
014:        // publish revised and/or new versions of the License.  You may not use,  
015:        // distribute, or otherwise make this file available under subsequent versions 
016:        // of the License.
017:        // 
018:        // Alternatively, the contents of this file may be used under the terms of the 
019:        // GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which
020:        // case the provisions of the LGPL are applicable instead of those above. If you 
021:        // wish to allow use of your version of this file only under the terms of the 
022:        // LGPL, and not to allow others to use your version of this file under the 
023:        // terms of the CDDL, indicate your decision by deleting the provisions above 
024:        // and replace them with the notice and other provisions required by the LGPL. 
025:        // If you do not delete the provisions above, a recipient may use your version 
026:        // of this file under the terms of either the CDDL or the LGPL.
027:        // 
028:        // This library is distributed in the hope that it will be useful,
029:        // but WITHOUT ANY WARRANTY; without even the implied warranty of
030:        // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
031:        // ============================================================================
032:
033:        package net.sf.jga.fn.comparison;
034:
035:        import java.util.Comparator;
036:        import net.sf.jga.fn.BinaryPredicate;
037:        import net.sf.jga.util.ComparableComparator;
038:
039:        /**
040:         * Binary Predicate that returns TRUE for arguments <b>x</b> and <b>y</b> when
041:         * x &gt;= y.  The comparison is performed using a comparator supplied at
042:         * construction time, although a default comparator will be used if the nested
043:         * Comparable class' default constructor is used.
044:         * The behaviour of this class in the presence of null arguments is left to the
045:         * implementation of the specific Comparator, however it is generally safe to
046:         * assume that using null arguments will cause a NullPointerException to be
047:         * thrown.
048:         * <p>
049:         * To serialize a GreaterEqual, the comparator passed at construction must be
050:         * Serializable.
051:         * <p>
052:         * Copyright &copy; 2002-2005  David A. Hall
053:         *
054:         * @author <a href="mailto:davidahall@users.sourceforge.net">David A. Hall</a>
055:         **/
056:
057:        public class GreaterEqual<T> extends BinaryPredicate<T, T> {
058:
059:            static final long serialVersionUID = 8834315867722931262L;
060:
061:            // The Comparator used to compare elements.
062:            private Comparator/*@*/<? super  T>/*@*/_comp;
063:
064:            /**
065:             * Builds a GreaterEqual predicate using the given Comparator
066:             * @throws IllegalArgumentException if the argument is null
067:             */
068:            public GreaterEqual(Comparator/*@*/<? super  T>/*@*/comp) {
069:                if (comp == null) {
070:                    throw new IllegalArgumentException(
071:                            "Comparator may not be null");
072:                }
073:
074:                _comp = comp;
075:            }
076:
077:            /**
078:             * Returns the comparator in use by this functor
079:             * @return the comparator in use by this functor
080:             */
081:            public Comparator<? super  T> getComparator() {
082:                return _comp;
083:            }
084:
085:            // BinaryPredicate interface
086:
087:            /**
088:             * Given Comparable arguments <b>x</b> and <b>y</b>, returns x &gt;= y.
089:             *
090:             * @throws NullPointerException if either argument is null
091:             * @return x &gt;= y
092:             */
093:            public Boolean fn(T x, T y) {
094:                return Boolean.valueOf(_comp.compare(x, y) >= 0);
095:            }
096:
097:            /**
098:             * Calls the Visitor's <code>visit(GreaterEqual)</code> method, if it
099:             * implements the nested Visitor interface.
100:             */
101:            public void accept(net.sf.jga.fn.Visitor v) {
102:                if (v instanceof  GreaterEqual.Visitor)
103:                    ((GreaterEqual.Visitor) v).visit(this );
104:                else
105:                    v.visit(this );
106:            }
107:
108:            // Object overrides
109:
110:            public String toString() {
111:                return "GreaterEqual";
112:            }
113:
114:            // Acyclic Visitor
115:
116:            /**
117:             * Interface for classes that may interpret a <b>GreaterEqual</b> predicate.
118:             */
119:            public interface Visitor extends net.sf.jga.fn.Visitor {
120:                public void visit(GreaterEqual host);
121:            }
122:
123:            /**
124:             * GreaterEqual predicate for use with Comparable arguments.  This class exists
125:             * as an implementation detail that works around a limit in the javac
126:             * inferencer -- in all substantive ways, this is simply a GreaterEqual functor.
127:             */
128:
129:            static public class Comparable<T extends java.lang.Comparable/*@*/<? super  T>/*@*/>
130:                    extends GreaterEqual<T> {
131:                static final long serialVersionUID = 62633572749973541L;
132:
133:                public Comparable() {
134:                    super (new ComparableComparator<T>());
135:                }
136:            }
137:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.