Record Class CAComparisonFuzzyType.IsNotEqualTo<T>
java.lang.Object
java.lang.Record
com.io7m.cardant.model.comparisons.CAComparisonFuzzyType.IsNotEqualTo<T>
- Type Parameters:
T- The type of values- Record Components:
value- The value
- All Implemented Interfaces:
CAComparisonFuzzyType<T>,CAComparisonType
- Enclosing interface:
CAComparisonFuzzyType<T>
public static record CAComparisonFuzzyType.IsNotEqualTo<T>(T value)
extends Record
implements CAComparisonFuzzyType<T>
Match a value exactly.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.io7m.cardant.model.comparisons.CAComparisonFuzzyType
CAComparisonFuzzyType.Anything<T>, CAComparisonFuzzyType.IsEqualTo<T>, CAComparisonFuzzyType.IsNotEqualTo<T>, CAComparisonFuzzyType.IsNotSimilarTo<T>, CAComparisonFuzzyType.IsSimilarTo<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.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
IsNotEqualTo
Match a value exactly.
-
-
Method Details
-
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
-