Record Class CAComparisonSetType.Anything<T>
java.lang.Object
java.lang.Record
com.io7m.cardant.model.comparisons.CAComparisonSetType.Anything<T>
- Type Parameters:
T- The type of values
- All Implemented Interfaces:
CAComparisonSetType<T>,CAComparisonType
- Enclosing interface:
CAComparisonSetType<T>
public static record CAComparisonSetType.Anything<T>()
extends Record
implements CAComparisonSetType<T>
Match any set.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.io7m.cardant.model.comparisons.CAComparisonSetType
CAComparisonSetType.Anything<T>, CAComparisonSetType.IsEqualTo<T>, CAComparisonSetType.IsNotEqualTo<T>, CAComparisonSetType.IsOverlapping<T>, CAComparisonSetType.IsSubsetOf<T>, CAComparisonSetType.IsSupersetOf<T> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.<U> CAComparisonSetType<U> Produce a new comparison over values transformed withf.booleanfinal StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Anything
public Anything()Creates an instance of aAnythingrecord class.
-
-
Method Details
-
map
Description copied from interface:CAComparisonSetTypeProduce a new comparison over values transformed withf.- Specified by:
mapin interfaceCAComparisonSetType<T>- Type Parameters:
U- The type of results- Parameters:
f- The transform- Returns:
- A new comparison
-
matches
- Specified by:
matchesin interfaceCAComparisonSetType<T>- Parameters:
other- The set- Returns:
trueif this comparison matches the given set
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal.
-