Uses of Enum Class
org.easymock.CaptureType
Packages that use CaptureType
-
Uses of CaptureType in org.easymock
Fields in org.easymock declared as CaptureTypeMethods in org.easymock that return CaptureTypeModifier and TypeMethodDescriptionstatic CaptureTypeReturns the enum constant of this class with the specified name.static CaptureType[]CaptureType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.easymock with parameters of type CaptureTypeModifier and TypeMethodDescriptionstatic <T> Capture<T>EasyMock.newCapture(CaptureType type) Create a new capture instance with a specificCaptureTypestatic <T> Capture<T>EasyMock.newCapture(CaptureType type, UnaryOperator<T> transform) Create a new capture instance with a specificCaptureTypeand a specific transformation function to change the values into a different value.static <T> Capture<T>Capture.newInstance(CaptureType type) Create a new capture instance with a specificCaptureType.static <T> Capture<T>Capture.newInstance(CaptureType type, UnaryOperator<T> transform) Create a new capture instance with a specificCaptureTypeand a specific transformation function to change the values into a different value.Constructors in org.easymock with parameters of type CaptureTypeModifierConstructorDescriptionprivateCapture(CaptureType type) Constructor allowing to select the capture type.privateCapture(CaptureType type, UnaryOperator<T> transform) Constructor allowing to select the capture type and transformation.