Record Class FormsSubmissionsWithListsTest.QuestionSave
java.lang.Object
java.lang.Record
io.micronaut.http.server.tck.tests.forms.FormsSubmissionsWithListsTest.QuestionSave
- Enclosing class:
- FormsSubmissionsWithListsTest
@Introspected
public static record FormsSubmissionsWithListsTest.QuestionSave(String question, List<Long> usersId)
extends Record
-
Constructor Summary
ConstructorDescriptionQuestionSave
(String question, List<Long> usersId) Creates an instance of aQuestionSave
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.question()
Returns the value of thequestion
record component.final String
toString()
Returns a string representation of this record class.usersId()
Returns the value of theusersId
record component.
-
Constructor Details
-
QuestionSave
Creates an instance of aQuestionSave
record class.- Parameters:
question
- the value for thequestion
record componentusersId
- the value for theusersId
record 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. All components in this record class are compared withObjects::equals(Object,Object)
. -
question
Returns the value of thequestion
record component.- Returns:
- the value of the
question
record component
-
usersId
Returns the value of theusersId
record component.- Returns:
- the value of the
usersId
record component
-