FlexOr.container
Class StringLessThanIC
java.lang.Object
   FlexOr.container.StringLessThanIC
FlexOr.container.StringLessThanIC
- All Implemented Interfaces: 
- BinaryPredicate
- public class StringLessThanIC 
- extends java.lang.Object- implements BinaryPredicate
Compare two strings ignoring case.
- Version:
- 1.0 1999 Jan 15
- Author:
- Gunnar Gotshalks
- See Also:
- Vector
 
| Method Summary | 
|  boolean | execute(java.lang.Object a,
        java.lang.Object b)Return true if string a < string b, else return false.
 | 
| static boolean | execute(java.lang.String a,
        java.lang.String b)
 | 
 
| Methods inherited from class java.lang.Object | 
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
StringLessThanIC
public StringLessThanIC()
execute
public final boolean execute(java.lang.Object a,
                             java.lang.Object b)
- Return true if string a < string b, else return false.
 
- 
- Specified by:
- executein interface- BinaryPredicate
 
- 
- Throws:
- if- at least one of a or b is not a String.
 
execute
public static boolean execute(java.lang.String a,
                              java.lang.String b)
- 
 
-