Package be.sddevelopment.validation
Record Class Constraint<T>
java.lang.Object
java.lang.Record
be.sddevelopment.validation.Constraint<T>
- Type Parameters:
T- type of the object onto which the rule can be applied- Record Components:
rule- a method that accepts an object of type T and returns a boolean that indicates if it matches the validation criterium.description- textual description of the validation rule
ValidationRule class.
Represents a single validation rule, which can be applied to an object of any type.-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionConstraint(Predicate<T> rule, String description) Creates an instance of aConstraintrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedescriptionrecord component.booleanIndicates whether some other object is "equal to" this one.inthashCode()Returns a hash code value for this object.rule()Returns the value of therulerecord component.static <S> Constraint.ValidationRuleBuilder<S> final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Constraint
Creates an instance of aConstraintrecord class.- Parameters:
rule- the value for therulerecord componentdescription- the value for thedescriptionrecord component
-
-
Method Details
-
ruleFor
-
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). -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
applyTo
-
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. -
rule
Returns the value of therulerecord component.- Returns:
- the value of the
rulerecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-