Record Class CAComparisonExactType.Anything<T>
java.lang.Object
java.lang.Record
com.io7m.cardant.model.comparisons.CAComparisonExactType.Anything<T>
- Type Parameters:
T- The type of values
- All Implemented Interfaces:
CAComparisonExactType<T>,CAComparisonType
- Enclosing interface:
CAComparisonExactType<T>
public static record CAComparisonExactType.Anything<T>()
extends Record
implements CAComparisonExactType<T>
Match any value.
-
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.
-
Constructor Details
-
Anything
public Anything()Creates an instance of aAnythingrecord class.
-
-
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
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.
-