Record Class GetTableApiFieldsAction.ApiNameVersionAndTableName
java.lang.Object
java.lang.Record
com.kingsrook.qqq.api.actions.GetTableApiFieldsAction.ApiNameVersionAndTableName
- Enclosing class:
GetTableApiFieldsAction
public static record GetTableApiFieldsAction.ApiNameVersionAndTableName(String apiName, String apiVersion, String tableName)
extends Record
Input-record for convenience methods
-
Constructor Summary
ConstructorsConstructorDescriptionApiNameVersionAndTableName
(String apiName, String apiVersion, String tableName) Creates an instance of aApiNameVersionAndTableName
record class. -
Method Summary
Modifier and TypeMethodDescriptionapiName()
Returns the value of theapiName
record component.Returns the value of theapiVersion
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thetableName
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
ApiNameVersionAndTableName
Creates an instance of aApiNameVersionAndTableName
record class.- Parameters:
apiName
- the value for theapiName
record componentapiVersion
- the value for theapiVersion
record componenttableName
- the value for thetableName
record 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)
. -
apiName
Returns the value of theapiName
record component.- Returns:
- the value of the
apiName
record component
-
apiVersion
Returns the value of theapiVersion
record component.- Returns:
- the value of the
apiVersion
record component
-
tableName
Returns the value of thetableName
record component.- Returns:
- the value of the
tableName
record component
-