Record Class RowGroupPredicate.And
java.lang.Object
java.lang.Record
dev.hardwood.reader.RowGroupPredicate.And
- All Implemented Interfaces:
RowGroupPredicate
- Enclosing interface:
RowGroupPredicate
public static record RowGroupPredicate.And(List<RowGroupPredicate> children)
extends Record
implements RowGroupPredicate
Conjunction of row-group predicates — a row group passes if and only if every child passes.
Constructed via
RowGroupPredicate.and(RowGroupPredicate...).-
Nested Class Summary
Nested classes/interfaces inherited from interface RowGroupPredicate
RowGroupPredicate.And, RowGroupPredicate.ByteRange -
Constructor Summary
ConstructorsConstructorDescriptionAnd(List<RowGroupPredicate> children) Creates an instance of aAndrecord class. -
Method Summary
Modifier and TypeMethodDescriptionchildren()Returns the value of thechildrenrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
And
Creates an instance of aAndrecord class.- Parameters:
children- the value for thechildrenrecord 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). -
children
Returns the value of thechildrenrecord component.- Returns:
- the value of the
childrenrecord component
-