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 TypeMethodDescriptionvoidaddCopyStatements(com.squareup.javapoet.MethodSpec.Builder ctor) Adds statements to copy all properties from another instance.voidaddMembers(com.squareup.javapoet.TypeSpec.Builder cls) Adds the necessary fields and methods to the provided TypeSpec.Builder for this property.Returns the value of thedescriptorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.Returns the value of theoperatorsrecord component.final StringtoString()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 thedescriptorrecord component.- Returns:
- the value of the
descriptorrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
operators
Returns the value of theoperatorsrecord component.- Returns:
- the value of the
operatorsrecord component
-