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

    Constructors
    Constructor
    Description
    PropertySpec(FieldDescriptor descriptor, String name, Set<SearchOperator> operators)
    Immutable constructor for PropertySpec.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    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 the descriptor record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    Returns the value of the name record component.
    Returns the value of the operators record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

  • 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

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • descriptor

      public FieldDescriptor descriptor()
      Returns the value of the descriptor record component.
      Returns:
      the value of the descriptor record component
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • operators

      public Set<SearchOperator> operators()
      Returns the value of the operators record component.
      Returns:
      the value of the operators record component