Package com.vaadin.copilot.ai
Record Class AICreateFieldsHandler.CreateExampleDataData
java.lang.Object
java.lang.Record
com.vaadin.copilot.ai.AICreateFieldsHandler.CreateExampleDataData
- Enclosing class:
AICreateFieldsHandler
public static record AICreateFieldsHandler.CreateExampleDataData(String entityName, List<UIServiceCreator.FieldInfo> fieldInfos, int count)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionCreateExampleDataData(String entityName, List<UIServiceCreator.FieldInfo> fieldInfos, int count) Creates an instance of aCreateExampleDataDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionintcount()Returns the value of thecountrecord component.Returns the value of theentityNamerecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefieldInfosrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CreateExampleDataData
public CreateExampleDataData(String entityName, List<UIServiceCreator.FieldInfo> fieldInfos, int count) Creates an instance of aCreateExampleDataDatarecord class.- Parameters:
entityName- the value for theentityNamerecord componentfieldInfos- the value for thefieldInfosrecord componentcount- the value for thecountrecord component
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
entityName
Returns the value of theentityNamerecord component.- Returns:
- the value of the
entityNamerecord component
-
fieldInfos
Returns the value of thefieldInfosrecord component.- Returns:
- the value of the
fieldInfosrecord component
-
count
public int count()Returns the value of thecountrecord component.- Returns:
- the value of the
countrecord component
-