Record Class CAComparisonSetType.IsEqualTo<T>
java.lang.Object
java.lang.Record
com.io7m.cardant.model.comparisons.CAComparisonSetType.IsEqualTo<T>
- Type Parameters:
T- The type of values- Record Components:
value- The value
- All Implemented Interfaces:
CAComparisonSetType<T>, CAComparisonType
- Enclosing interface:
CAComparisonSetType<T>
public static record CAComparisonSetType.IsEqualTo<T>(Set<T> value)
extends Record
implements CAComparisonSetType<T>
Match a value exactly.
-
Nested Class Summary
Nested classes/interfaces inherited from interface 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.Produce a new comparison over values transformed withf.booleanfinal StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
IsEqualTo
-
-
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
-
hashCode
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
value
-