Record Class PropertySpec
java.lang.Object
java.lang.Record
nl.datasteel.crudcraft.codegen.writer.search.PropertySpec
public record PropertySpec(FieldDescriptor descriptor, String name, Set<SearchOperator> operators)
extends Record
Represents a property specification for a searchable field in a model.
This includes the field descriptor, the name of the property, and the
set of search operators applicable to this property.
-
Constructor Summary
ConstructorsConstructorDescriptionPropertySpec
(FieldDescriptor descriptor, String name, Set<SearchOperator> operators) Immutable constructor for PropertySpec. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addCopyStatements
(com.squareup.javapoet.MethodSpec.Builder ctor) Adds statements to copy all properties from another instance.void
addMembers
(com.squareup.javapoet.TypeSpec.Builder cls) Adds the necessary fields and methods to the provided TypeSpec.Builder for this property.Returns the value of thedescriptor
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.Returns the value of theoperators
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PropertySpec
Immutable constructor for PropertySpec.
-
-
Method Details
-
addMembers
public void addMembers(com.squareup.javapoet.TypeSpec.Builder cls) Adds the necessary fields and methods to the provided TypeSpec.Builder for this property. -
addCopyStatements
public void addCopyStatements(com.squareup.javapoet.MethodSpec.Builder ctor) Adds statements to copy all properties from another instance.- Parameters:
ctor
- constructor builder to append the copy statements to
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
descriptor
Returns the value of thedescriptor
record component.- Returns:
- the value of the
descriptor
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
operators
Returns the value of theoperators
record component.- Returns:
- the value of the
operators
record component
-