Module java4ever.binding
Record Class ApiFunction
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.generator.reference.ApiFunction
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.errors()Returns the value of theerrorsrecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.ApiType[]params()Returns the value of theparamsrecord component.result()Returns the value of theresultrecord component.summary()Returns the value of thesummaryrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ApiFunction
public ApiFunction(String name, String summary, String description, ApiType[] params, ApiType result, String errors) Creates an instance of aApiFunctionrecord class.- Parameters:
name- the value for thenamerecord componentsummary- the value for thesummaryrecord componentdescription- the value for thedescriptionrecord componentparams- the value for theparamsrecord componentresult- the value for theresultrecord componenterrors- the value for theerrorsrecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
summary
Returns the value of thesummaryrecord component.- Returns:
- the value of the
summaryrecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
result
Returns the value of theresultrecord component.- Returns:
- the value of the
resultrecord component
-
errors
Returns the value of theerrorsrecord component.- Returns:
- the value of the
errorsrecord component
-