Skip to content
This repository has been archived by the owner on Dec 16, 2020. It is now read-only.

Latest commit

 

History

History
22 lines (19 loc) · 705 Bytes

API-GUIDE.md

File metadata and controls

22 lines (19 loc) · 705 Bytes

API Guide

This very brief documentation should give you a good starting point on how to discover the API:

Comparator                           # Main class dispatching the work
|
-- Check, Result, Sample             # Helper classes for easier testing
|
-- SearchingStrategies               
|  |
|  -- ContainsAll                    # Strategies doing the hard work:
|  |                                 # compare data with keywords and
|  -- ...                            # return the result
|
-- CachingStrategies
|  |
|  -- SingleValueCaching             # Strategies doing the hard work:
|  |                                 # caching the objects
|  -- ...