Package app.ductape.sdk.vector.types
Record Class VectorInterfaceTypes.MetadataFilterGroup
java.lang.Object
java.lang.Record
app.ductape.sdk.vector.types.VectorInterfaceTypes.MetadataFilterGroup
- All Implemented Interfaces:
VectorInterfaceTypes.MetadataFilterNode
- Enclosing class:
- VectorInterfaceTypes
public static record VectorInterfaceTypes.MetadataFilterGroup(List<VectorInterfaceTypes.MetadataFilterNode> andNodes, List<VectorInterfaceTypes.MetadataFilterNode> orNodes, VectorInterfaceTypes.MetadataFilterNode notNode)
extends Record
implements VectorInterfaceTypes.MetadataFilterNode
TS
IMetadataFilterGroup.-
Constructor Summary
ConstructorsConstructorDescriptionMetadataFilterGroup(List<VectorInterfaceTypes.MetadataFilterNode> andNodes, List<VectorInterfaceTypes.MetadataFilterNode> orNodes, VectorInterfaceTypes.MetadataFilterNode notNode) Creates an instance of aMetadataFilterGrouprecord class. -
Method Summary
Modifier and TypeMethodDescriptionandNodes()Returns the value of theandNodesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.notNode()Returns the value of thenotNoderecord component.orNodes()Returns the value of theorNodesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MetadataFilterGroup
public MetadataFilterGroup(List<VectorInterfaceTypes.MetadataFilterNode> andNodes, List<VectorInterfaceTypes.MetadataFilterNode> orNodes, VectorInterfaceTypes.MetadataFilterNode notNode) Creates an instance of aMetadataFilterGrouprecord class.- Parameters:
andNodes- the value for theandNodesrecord componentorNodes- the value for theorNodesrecord componentnotNode- the value for thenotNoderecord 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). -
andNodes
Returns the value of theandNodesrecord component.- Returns:
- the value of the
andNodesrecord component
-
orNodes
Returns the value of theorNodesrecord component.- Returns:
- the value of the
orNodesrecord component
-
notNode
Returns the value of thenotNoderecord component.- Returns:
- the value of the
notNoderecord component
-