Record Class CAComparisonExactType.IsEqualTo<T>
java.lang.Object
java.lang.Record
com.io7m.cardant.model.comparisons.CAComparisonExactType.IsEqualTo<T>
- Type Parameters:
T- The type of values- Record Components:
value- The value
- All Implemented Interfaces:
CAComparisonExactType<T>,CAComparisonType
- Enclosing interface:
CAComparisonExactType<T>
public static record CAComparisonExactType.IsEqualTo<T>(T value)
extends Record
implements CAComparisonExactType<T>
Match a value exactly.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.io7m.cardant.model.comparisons.CAComparisonExactType
CAComparisonExactType.Anything<T>, CAComparisonExactType.IsEqualTo<T>, CAComparisonExactType.IsNotEqualTo<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.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
IsEqualTo
Match a value exactly.
-
-
Method Details
-
map
Description copied from interface:CAComparisonExactTypeProduce a new comparison over values transformed withf.- Specified by:
mapin interfaceCAComparisonExactType<T>- Type Parameters:
U- The type of results- Parameters:
f- The transform- Returns:
- A new comparison
-
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
-