Package org.mockserver.verify
Class VerificationTimes
- java.lang.Object
-
- org.mockserver.model.ObjectWithReflectiveEqualsHashCodeToString
-
- org.mockserver.verify.VerificationTimes
-
public class VerificationTimes extends ObjectWithReflectiveEqualsHashCodeToString
- Author:
- jamesdbloom
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VerificationTimes
atLeast(int count)
static VerificationTimes
atMost(int count)
static VerificationTimes
between(int atLeast, int atMost)
static VerificationTimes
exactly(int count)
int
getAtLeast()
int
getAtMost()
boolean
matches(int times)
static VerificationTimes
once()
String
toString()
-
Methods inherited from class org.mockserver.model.ObjectWithReflectiveEqualsHashCodeToString
equals, fieldsExcludedFromEqualsAndHashCode, hashCode, key
-
-
-
-
Method Detail
-
once
public static VerificationTimes once()
-
exactly
public static VerificationTimes exactly(int count)
-
atLeast
public static VerificationTimes atLeast(int count)
-
atMost
public static VerificationTimes atMost(int count)
-
between
public static VerificationTimes between(int atLeast, int atMost)
-
getAtLeast
public int getAtLeast()
-
getAtMost
public int getAtMost()
-
matches
public boolean matches(int times)
-
toString
public String toString()
- Overrides:
toString
in classObjectWithReflectiveEqualsHashCodeToString
-
-