id
stringlengths
16
145
text
stringlengths
1
179k
title
stringclasses
1 value
hamcrest_classes/hamcrest_classes_28_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/JMock1Adapter.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](../../../help-do...
hamcrest_classes/using-matchers6_12_0.txt
` toEqual ` recursively checks every field of an object or array. tip
hamcrest_classes/class-Cake.Collection.Collection.html7_216_0.txt
` callable|string ` $callback ` int ` $type optional
hamcrest_classes/hamcrest_classes_65_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/OrderingComparison.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](../../../he...
hamcrest_classes/class-Cake.Collection.Collection.html7_116_0.txt
` Cake\Collection\CollectionInterface ` ### compile() ¶ public
hamcrest_classes/class-Cake.Collection.Collection.html7_322_0.txt
* Community * Get Involved * Issues (Github) * Bakery * Featured Resources * Training * Meetups * My CakePHP * CakeFest * Newsletter * Linkedin * YouTube * Facebook * Twitter * Mastodon * Help & Support * Forum * Stack Overflow * IRC * Slack * Paid Support
hamcrest_classes/hamcrest_classes_38_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/IsNull.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](../../../help-doc.html)...
hamcrest_classes/class-Cake.Collection.Collection.html7_71_0.txt
_createMatcherFilter(array $conditions): callable Returns a callable that receives a value and will return whether or not it matches certain condition.
hamcrest_classes/class-Cake.Collection.Collection.html7_246_0.txt
### shuffle() ¶ public shuffle(): Cake\Collection\CollectionInterface
hamcrest_classes/hamcrest_classes_68_2.txt
public void **describeTo**([Description](../../../org/hamcrest/Description.html "interface in org.hamcrest") description) **Description copied from interface:` [ SelfDescribing ](../../../org/hamcrest/SelfDescribing.html#describeTo\(org.hamcrest.Description\)) ` ** Generates a description of the object. The ...
hamcrest_classes/hamcrest_classes_45_1.txt
er does not know at runtime what the type is (because of type erasure with Java generics). It is down to the implementations to check the correct type. **Parameters:** ` arg ` \- the object against which the matcher is evaluated. **Returns:** ` true ` if item matches, otherwise ` false ` . **See Al...
hamcrest_classes/hamcrest_classes_37_1.txt
tml) | [ **Index** ](../../../index-all.html) | [ **Help** ](../../../help-doc.html) ---|---|---|---|---|---|---|--- __ [ **PREV CLASS** ](../../../org/hamcrest/core/CombinableMatcher.CombinableBothMatcher.html "class in org.hamcrest.core") [ **NEXT CLASS** ](../../../org/hamcrest/core/DescribedAs.html "class i...
hamcrest_classes/hamcrest_classes_3_1.txt
t_implement_Matcher___instead_extend_BaseMatcher_\(\)) , [ toString ](../../../org/hamcrest/BaseMatcher.html#toString\(\)) ` **Methods inherited from class java.lang.Object** --- ` clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait ` **Constructor Detail** --- ### IsEven...
hamcrest_classes/class-Cake.Collection.Collection.html7_43_0.txt
* ##### reduce() public Folds the values in this collection to a single value, as the result of applying the callback function to all elements. $zero is the initial state of the reduction, and each successive step of it should be returned by the callback function. If $zero is omitted the first value of the collec...
hamcrest_classes/class-Cake.Collection.Collection.html7_35_0.txt
* ##### jsonSerialize() public Convert a result set into JSON.
hamcrest_classes/using-matchers6_26_0.txt
This is just a taste. For a complete list of matchers, check out the reference docs . Once you've learned about the matchers that are available, a good next step is to check out how Jest lets you test asynchronous code .
hamcrest_classes/class-Cake.Collection.Collection.html7_132_0.txt
Sorts a list into groups and returns a count for the number of elements in each group. Similar to groupBy, but instead of returning a list of values, returns a count for the number of values in that group. When $callback is a string it should be a property name to extract or a dot separated path of properties that sho...
hamcrest_classes/class-Cake.Collection.Collection.html7_268_0.txt
Get elements until the first unapproved message is found: $comments = (new Collection($comments))->stopWhen(['is_approved' => false]);
hamcrest_classes/class-Cake.Collection.Collection.html7_92_0.txt
_unwrap(): Iterator Backwards compatible wrapper for unwrap()
hamcrest_classes/using-matchers6_14_0.txt
test('adding positive numbers is not zero', () => { for (let a = 1; a < 10; a++) { for (let b = 1; b < 10; b++) { expect(a + b).not.toBe(0); } } }); ## Truthiness ​
hamcrest_classes/hamcrest_classes_60_2.txt
array will stop as soon as a matching element is found. For example: assertThat(new String[] {"foo", "bar"}, hasItemInArray(startsWith("ba"))) **Parameters:** ` elementMatcher ` \- the matcher to apply to elements in examined arrays * * * ### hasItemInArray public static ...
hamcrest_classes/class-Cake.Collection.Collection.html7_296_0.txt
### unfold() ¶ public unfold(callable|null $transformer = null): Cake\Collection\CollectionInterface
hamcrest_classes/class-Cake.Collection.Collection.html7_15_0.txt
* ##### _unwrap() public deprecated Backwards compatible wrapper for unwrap()
hamcrest_classes/class-Cake.Collection.Collection.html7_188_0.txt
` bool ` ### jsonSerialize() ¶ public
hamcrest_classes/hamcrest_classes_1_25.txt
ed expectedString, ignoring case. For example: assertThat("Foo", equalToIgnoringCase("FOO")) **Parameters:** ` expectedString ` \- the expected value of matched strings * * * ### equalToIgnoringWhiteSpace public static [Matcher](../../org/hamcrest/Matcher.html "interface i...
hamcrest_classes/class-Cake.Collection.Collection.html7_282_0.txt
Passes this collection through a callable as its first argument. This is useful for decorating the full collection with another object. ### Example:
hamcrest_classes/hamcrest_classes_21_0.txt
* * * | [ **Overview** ](../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/SelfDescribing.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../deprecated-list.html) | [ **Index** ](../../index-all.html) | [ **Help** ](../../help-doc.html) -...
hamcrest_classes/class-Cake.Collection.Collection.html7_176_0.txt
` callable|string ` $callback
hamcrest_classes/class-Cake.Collection.Collection.html7_41_0.txt
* ##### min() public Returns the bottom element in this collection after being sorted by a property. Check the sortBy method for information on the callback and $type parameters
hamcrest_classes/class-Cake.Collection.Collection.html7_309_0.txt
###### Returns ` Iterator `
hamcrest_classes/query-methods-details.html7_27_0.txt
### Returning Custom Streamable Wrapper Types Providing dedicated wrapper types for collections is a commonly used pattern to provide an API for a query result that returns multiple elements. Usually, these types are used by invoking a repository method returning a collection- like type and creating an instance of th...
hamcrest_classes/class-Cake.Collection.Collection.html7_124_0.txt
Returns true if $value is present in this collection. Comparisons are made both by value and type. ###### Parameters
hamcrest_classes/using-matchers6_1_0.txt
Jest 29.7
hamcrest_classes/hamcrest_classes_0_2.txt
ml "class in org.hamcrest.collection") | [ **FRAMES** ](../../../index.html?org/hamcrest/collection/IsArrayWithSize.html) [ **NO FRAMES** ](IsArrayWithSize.html) [ **All Classes** ](../../../allclasses-noframe.html) SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD * * *
hamcrest_classes/class-Cake.Collection.Collection.html7_123_0.txt
### contains() ¶ public contains(mixed $value): bool
hamcrest_classes/hamcrest_classes_43_1.txt
- ` clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait ` **Field Detail** --- ### NOT_MATCHED public static final [org.hamcrest.Condition.NotMatched](http://kentbeck.github.com/junit/javadoc/latest/org/hamcrest/Condition.NotMatched.html?is-external=t...
hamcrest_classes/class-Cake.Collection.Collection.html7_213_0.txt
### max() ¶ public max(callable|string $callback, int $type = SORT_NUMERIC): mixed
hamcrest_classes/hamcrest_classes_16_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/SelfDescribingValueIterator.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](.....
hamcrest_classes/hamcrest_classes_37_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/CombinableMatcher.CombinableEitherMatcher.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [...
hamcrest_classes/using-matchers6_27_0.txt
Edit this page Last updated on Sep 12, 2023 by Simen Bekkhus
hamcrest_classes/class-Cake.Collection.Collection.html7_308_0.txt
unwrap(): Iterator Returns the closest nested iterator that can be safely traversed without losing any possible transformations. This is used mainly to remove empty IteratorIterator wrappers that can only slowdown the iteration process.
hamcrest_classes/hamcrest_classes_47_9.txt
### hasItem public static <T> [Matcher](../../org/hamcrest/Matcher.html "interface in org.hamcrest")<java.lang.Iterable<? super T>> **hasItem**([Matcher](../../org/hamcrest/Matcher.html "interface in org.hamcrest")<? super T> itemMatcher) Creates a matcher for ` Iterable ` s that only matches wh...
hamcrest_classes/class-Cake.Collection.Collection.html7_44_0.txt
* ##### reject() public Looks through each value in the collection, and returns another collection with all the values that do not pass a truth test. This is the opposite of ` filter ` .
hamcrest_classes/query-methods-details.html7_34_0.txt
try (Stream<User> stream = repository.findAllByCustomQueryAndStream()) { stream.forEach(…); } | Not all Spring Data modules currently support ` Stream<T> ` as a return type. ---|--- ## Asynchronous Query Results
hamcrest_classes/hamcrest_classes_27_0.txt
* * * | [ **Overview** ](../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/BaseMatcher.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../deprecated-list.html) | [ **Index** ](../../index-all.html) | [ **Help** ](../../help-doc.html) ---|...
hamcrest_classes/class-Cake.Collection.Collection.html7_20_0.txt
* ##### combine() public Returns a new collection where the values extracted based on a value path and then indexed by a key path. Optionally this method can produce parent groups based on a group property path.
hamcrest_classes/hamcrest_classes_47_8.txt
ated to the decorated matcher, including its mismatch description. For example: describedAs("a big decimal equal to %0", equalTo(myBigDecimal), myBigDecimal.toPlainString()) **Parameters:** ` description ` \- the new description for the wrapped matcher ` matcher ` \- the matcher to wra...
hamcrest_classes/hamcrest_classes_59_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/IsEqualIgnoringWhiteSpace.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](../....
hamcrest_classes/class-Cake.Collection.Collection.html7_258_0.txt
### sortBy() ¶ public sortBy(callable|string $callback, int $dir = SORT_DESC, int $type = SORT_NUMERIC): Cake\Collection\CollectionInterface
hamcrest_classes/hamcrest_classes_73_1.txt
** --- ` [ describeMismatch ](../../../org/hamcrest/TypeSafeMatcher.html#describeMismatch\(java.lang.Object, org.hamcrest.Description\)) , [ matches ](../../../org/hamcrest/TypeSafeMatcher.html#matches\(java.lang.Object\)) ` **Methods inherited from class org.hamcrest.[ BaseMatcher ](../../../org/hamcrest/BaseMa...
hamcrest_classes/hamcrest_classes_11_1.txt
the specified matchers. ` static | ` <T> [ Matcher ](../../../org/hamcrest/Matcher.html "interface in org.hamcrest") <T> ` --- ` ` **[ allOf ](../../../org/hamcrest/core/AllOf.html#allOf\(org.hamcrest.Matcher, org.hamcrest.Matcher, org.hamcrest.Matcher, org.hamcrest.Matcher\)) ** ( [ Matcher ](../../../org/ham...
hamcrest_classes/class-Cake.Collection.Collection.html7_50_0.txt
* ##### sortBy() public Returns a sorted iterator out of the elements in this collection, ranked in ascending order by the results of running each value through a callback. $callback can also be a string representing the column or property name.
hamcrest_classes/class-Cake.Collection.Collection.html7_130_0.txt
###### Throws ` LogicException `
hamcrest_classes/hamcrest_classes_14_0.txt
* * * | [ **Overview** ](../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/CustomTypeSafeMatcher.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../deprecated-list.html) | [ **Index** ](../../index-all.html) | [ **Help** ](../../help-doc.ht...
hamcrest_classes/using-matchers6_17_0.txt
You should use the matcher that most precisely corresponds to what you want your code to be doing. ## Numbers ​
hamcrest_classes/class-Cake.Collection.Collection.html7_295_0.txt
###### Returns ` Cake\Collection\CollectionInterface `
hamcrest_classes/hamcrest_classes_50_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/IsEmptyString.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](../../../help-do...
hamcrest_classes/hamcrest_classes_8_0.txt
* * * | [ **Overview** ](../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/Matcher.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../deprecated-list.html) | [ **Index** ](../../index-all.html) | [ **Help** ](../../help-doc.html) ---|---|...
hamcrest_classes/class-Cake.Collection.Collection.html7_109_0.txt
###### Returns
hamcrest_classes/query-methods-details.html7_29_0.txt
The following listing shows an example: class Product { (1) MonetaryAmount getPrice() { … } } @RequiredArgsConstructor(staticName = "of") class Products implements Streamable<Product> { (2) private final Streamable<Product>...
hamcrest_classes/class-Cake.Collection.Collection.html7_18_0.txt
* ##### cartesianProduct() public {@inheritDoc}
hamcrest_classes/hamcrest_classes_58_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/StringContainsInOrder.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](../../.....
hamcrest_classes/class-Cake.Collection.Collection.html7_199_0.txt
###### Parameters ` string|int ` $dir optional
hamcrest_classes/hamcrest_classes_18_1.txt
lang.Object** --- ` clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait ` **Constructor Detail** --- ### Every public **Every**([Matcher](../../../org/hamcrest/Matcher.html "interface in org.hamcrest")<? super [T](../../../org/hamcrest/core/Every.html "type p...
hamcrest_classes/class-Cake.Collection.Collection.html7_56_0.txt
* ##### toList() public Returns an numerically-indexed array representation of the results. This is equivalent to calling ` toArray(false) `
hamcrest_classes/class-Cake.Collection.Collection.html7_113_0.txt
###### Parameters ` callable|string ` $keyPath
hamcrest_classes/class-Cake.Collection.Collection.html7_149_0.txt
If a column or property could not be found for a particular element in the collection, that position is filled with null. ### Example:
hamcrest_classes/class-Cake.Collection.Collection.html7_38_0.txt
* ##### map() public Returns another collection after modifying each of the values in this one using the provided callable.
hamcrest_classes/query-methods-details.html7_21_0.txt
List<Person> findByAddressZipCode(ZipCode zipCode); Assume a ` Person ` has an ` Address ` with a ` ZipCode ` . In that case, the method creates the ` x.address.zipCode ` property traversal. The resolution algorithm starts by interpreting the entire part ( ` AddressZipCode ` ) as the property and checks ...
hamcrest_classes/class-Cake.Collection.Collection.html7_209_0.txt
Looks through each value in the list, returning a Collection of all the values that contain all of the key-value pairs listed in $conditions. ### Example:
hamcrest_classes/using-matchers6_19_0.txt
For floating point equality, use ` toBeCloseTo ` instead of ` toEqual ` , because you don't want a test to depend on a tiny rounding error. test('adding floating point numbers', () => { const value = 0.1 + 0.2; //expect(value).toBe(0.3); This won't work because of rounding error...
hamcrest_classes/class-Cake.Collection.Collection.html7_175_0.txt
$items = [ ['id' => 1, 'name' => 'foo'], ['id' => 2, 'name' => 'bar'], ['id' => 3, 'name' => 'baz'], ]; $indexed = (new Collection($items))->indexBy('id'); // Or $indexed = (new Collection($items))->indexBy(function ($e) { return $e['id']; }); // ...
hamcrest_classes/class-Cake.Collection.Collection.html7_97_0.txt
###### Returns ` Cake\Collection\CollectionInterface `
hamcrest_classes/class-Cake.Collection.Collection.html7_167_0.txt
### groupBy() ¶ public groupBy(callable|string $callback): Cake\Collection\CollectionInterface
hamcrest_classes/class-Cake.Collection.Collection.html7_195_0.txt
Returns a new collection with each of the elements of this collection after flattening the tree structure. The tree structure is defined by nesting elements under a key with a known name. It is possible to specify such name by using the '$nestingKey' parameter. By default all elements in the tree following a Depth Fir...
hamcrest_classes/class-Cake.Collection.Collection.html7_279_0.txt
` int ` $from optional
hamcrest_classes/class-Cake.Collection.Collection.html7_244_0.txt
serialize(): string Returns a string representation of this object that can be used to reconstruct it
hamcrest_classes/query-methods-details.html7_52_0.txt
Search in all Spring Docs
hamcrest_classes/class-Cake.Collection.Collection.html7_212_0.txt
###### Returns ` Cake\Collection\CollectionInterface `
hamcrest_classes/query-methods-details.html7_14_0.txt
* ` CREATE_IF_NOT_FOUND ` (the default) combines ` CREATE ` and ` USE_DECLARED_QUERY ` . It looks up a declared query first, and, if no declared query is found, it creates a custom method name-based query. This is the default lookup strategy and, thus, is used if you do not configure anything explicitly. It allows qu...
hamcrest_classes/class-Cake.Collection.Collection.html7_150_0.txt
Extract the user name for all comments in the array: $items = [ ['comment' => ['body' => 'cool', 'user' => ['name' => 'Mark']], ['comment' => ['body' => 'very cool', 'user' => ['name' => 'Renan']] ]; $extracted = (new Collection($items))->extract('comment.user.name'); // Result...
hamcrest_classes/hamcrest_classes_31_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/SamePropertyValuesAs.PropertyMatcher.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **He...
hamcrest_classes/class-Cake.Collection.Collection.html7_45_0.txt
* ##### sample() public Returns a new collection with maximum $size random elements from this collection
hamcrest_classes/class-Cake.Collection.Collection.html7_93_0.txt
###### Returns ` Iterator `
hamcrest_classes/hamcrest_classes_1_2.txt
core") <T> ` --- ` ` **[ anyOf ](../../org/hamcrest/Matchers.html#anyOf\(org.hamcrest.Matcher, org.hamcrest.Matcher, org.hamcrest.Matcher, org.hamcrest.Matcher\)) ** ( [ Matcher ](../../org/hamcrest/Matcher.html "interface in org.hamcrest") <T> first, [ Matcher ](../../org/hamcrest/Matcher.html "interface in org.ha...
hamcrest_classes/class-Cake.Collection.Collection.html7_270_0.txt
###### Returns
hamcrest_classes/class-Cake.Collection.Collection.html7_273_0.txt
### Example: $items = [ ['invoice' => ['total' => 100], ['invoice' => ['total' => 200] ]; $total = (new Collection($items))->sumOf('invoice.total'); // Total: 300 $total = (new Collection([1, 2, 3]))->sumOf(); // Total: 6
hamcrest_classes/hamcrest_classes_33_0.txt
* * * | [ **Overview** ](../../../overview-summary.html) | [ **Package** ](package-summary.html) | **Class** | [ **Use** ](class-use/HasXPath.html) | [ **Tree** ](package-tree.html) | [ **Deprecated** ](../../../deprecated-list.html) | [ **Index** ](../../../index-all.html) | [ **Help** ](../../../help-doc.htm...
hamcrest_classes/using-matchers6_4_0.txt
Search * Introduction
hamcrest_classes/class-Cake.Collection.Collection.html7_298_0.txt
If no transformer function is passed, an "identity" function will be used. This is useful when each of the elements in the source collection are lists of items to be appended one after another. ### Example:
hamcrest_classes/class-Cake.Collection.Collection.html7_321_0.txt
* Business Solutions * Showcase * Documentation * Book * API * Videos * Reporting Security Issues * Privacy Policy * Logos & Trademarks
hamcrest_classes/query-methods-details.html7_19_0.txt
* The method parser supports setting an ` IgnoreCase ` flag for individual properties (for example, ` findByLastnameIgnoreCase(…) ` ) or for all properties of a type that supports ignoring case (usually ` String ` instances — for example, ` findByLastnameAndFirstnameAllIgnoreCase(…) ` ). Whether ignoring cases is sup...
hamcrest_classes/class-Cake.Collection.Collection.html7_250_0.txt
###### Parameters ` int ` $howMany
hamcrest_classes/class-Cake.Collection.Collection.html7_293_0.txt
transpose(): Cake\Collection\CollectionInterface Transpose rows and columns into columns and rows
hamcrest_classes/class-Cake.Collection.Collection.html7_201_0.txt
###### Returns ` Cake\Collection\Iterator\TreeIterator `
hamcrest_classes/class-Cake.Collection.Collection.html7_122_0.txt
###### Returns ` Cake\Collection\CollectionInterface `
hamcrest_classes/hamcrest_classes_39_2.txt
est/Description.html "interface in org.hamcrest") **appendValueList**(java.lang.String start, java.lang.String separator, java.lang.String end, java.lang.Iterable<T> values) **Descripti...
hamcrest_classes/class-Cake.Collection.Collection.html7_53_0.txt
* ##### take() public Returns a new collection with maximum $size elements in the internal order this collection was created. If a second parameter is passed, it will determine from what position to start taking elements.
hamcrest_classes/hamcrest_classes_51_1.txt
--- ` clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait ` **Constructor Detail** --- ### BigDecimalCloseTo public **BigDecimalCloseTo**(java.math.BigDecimal value, java.math.BigDecimal error) **Method Detail** --- ### m...
hamcrest_classes/query-methods-details.html7_45_0.txt
TypedSort<Person> person = Sort.sort(Person.class); Sort sort = person.by(Person::getFirstname).ascending() .and(person.by(Person::getLastname).descending()); | ` TypedSort.by(…) ` makes use of runtime proxies by (typically) using CGlib, which may interfere with native image compilation w...