Package com.jidesoft.comparator
Class ComparatorContext
java.lang.Object
com.jidesoft.converter.AbstractContext
com.jidesoft.comparator.ComparatorContext
- All Implemented Interfaces:
Serializable
The context object used by
ObjectComparatorManager. For the same type, we may need different way to
compare them. This context is used so that user can register different comparators for the same type.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ComparatorContextDefault comparator context with empty name and no user object. -
Constructor Summary
ConstructorsConstructorDescriptionComparatorContext(String name) Creates a comparator context with a name.ComparatorContext(String name, Object object) Creates a comparator context with a name and a user object. -
Method Summary
Methods inherited from class com.jidesoft.converter.AbstractContext
equals, getName, getUserObject, hashCode, setName, setUserObject, toString
-
Field Details
-
DEFAULT_CONTEXT
Default comparator context with empty name and no user object.
-
-
Constructor Details
-
ComparatorContext
Creates a comparator context with a name.- Parameters:
name- the name of the comparator context.
-
ComparatorContext
Creates a comparator context with a name and a user object.- Parameters:
name- the name of the comparator context.object- the user object. It can be used as any object to pass informaton along.
-