Package org.easymock.internal.matchers
Class CompareTo<T extends java.lang.Comparable<T>>
- java.lang.Object
-
- org.easymock.internal.matchers.CompareTo<T>
-
- Type Parameters:
T- Type of the values compared
- All Implemented Interfaces:
java.io.Serializable,IArgumentMatcher
- Direct Known Subclasses:
CompareEqual,GreaterOrEqual,GreaterThan,LessOrEqual,LessThan
public abstract class CompareTo<T extends java.lang.Comparable<T>> extends java.lang.Object implements IArgumentMatcher, java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Comparable<T>expectedprivate static longserialVersionUID
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidappendTo(java.lang.StringBuffer buffer)Appends a string representation of this matcher to the given buffer.protected abstract java.lang.StringgetName()booleanmatches(java.lang.Object actual)Returns whether this matcher accepts the given argument.protected abstract booleanmatchResult(int result)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CompareTo
public CompareTo(java.lang.Comparable<T> value)
-
-
Method Detail
-
matches
public boolean matches(java.lang.Object actual)
Description copied from interface:IArgumentMatcherReturns whether this matcher accepts the given argument.Like Object.equals(), it should be aware that the argument passed might be null and of any type. So you will usually start the method with an instanceof and/or null check.
The method should never assert if the argument doesn't match. It should only return false. EasyMock will take care of asserting if the call is really unexpected.
- Specified by:
matchesin interfaceIArgumentMatcher- Parameters:
actual- the argument- Returns:
- whether this matcher accepts the given argument.
-
appendTo
public void appendTo(java.lang.StringBuffer buffer)
Description copied from interface:IArgumentMatcherAppends a string representation of this matcher to the given buffer. In case of failure, the printed message will show this string to allow to know which matcher was used for the failing call.- Specified by:
appendToin interfaceIArgumentMatcher- Parameters:
buffer- the buffer to which the string representation is appended.
-
getName
protected abstract java.lang.String getName()
-
matchResult
protected abstract boolean matchResult(int result)
-
-