Package app.ductape.sdk.vector.types
Record Class VectorActionInterfaceTypes.VectorActionFetchOptions
java.lang.Object
java.lang.Record
app.ductape.sdk.vector.types.VectorActionInterfaceTypes.VectorActionFetchOptions
- Enclosing class:
- VectorActionInterfaceTypes
public static record VectorActionInterfaceTypes.VectorActionFetchOptions(String product, String vector, String actionTag)
extends Record
TS
IVectorActionFetchOptions-
Constructor Summary
ConstructorsConstructorDescriptionVectorActionFetchOptions(String product, String vector, String actionTag) Creates an instance of aVectorActionFetchOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactionTagrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.product()Returns the value of theproductrecord component.final StringtoString()Returns a string representation of this record class.vector()Returns the value of thevectorrecord component.
-
Constructor Details
-
VectorActionFetchOptions
Creates an instance of aVectorActionFetchOptionsrecord class.- Parameters:
product- the value for theproductrecord componentvector- the value for thevectorrecord componentactionTag- the value for theactionTagrecord 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). -
product
Returns the value of theproductrecord component.- Returns:
- the value of the
productrecord component
-
vector
Returns the value of thevectorrecord component.- Returns:
- the value of the
vectorrecord component
-
actionTag
Returns the value of theactionTagrecord component.- Returns:
- the value of the
actionTagrecord component
-