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 aApiNameVersionAndTableNamerecord class. -
Method Summary
Modifier and TypeMethodDescriptionapiName()Returns the value of theapiNamerecord component.Returns the value of theapiVersionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thetableNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ApiNameVersionAndTableName
Creates an instance of aApiNameVersionAndTableNamerecord class.- Parameters:
apiName- the value for theapiNamerecord componentapiVersion- the value for theapiVersionrecord componenttableName- the value for thetableNamerecord 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 theapiNamerecord component.- Returns:
- the value of the
apiNamerecord component
-
apiVersion
Returns the value of theapiVersionrecord component.- Returns:
- the value of the
apiVersionrecord component
-
tableName
Returns the value of thetableNamerecord component.- Returns:
- the value of the
tableNamerecord component
-