Package org.apache.iceberg.util
Class StructLikeWrapper
- java.lang.Object
-
- org.apache.iceberg.util.StructLikeWrapper
-
public class StructLikeWrapper extends java.lang.ObjectWrapper to adapt StructLike for use in maps and sets by implementing equals and hashCode.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StructLikeWrappercopyFor(StructLike newStruct)Creates a copy of this wrapper that wraps a struct.booleanequals(java.lang.Object other)static StructLikeWrapperforType(Types.StructType struct)StructLikeget()inthashCode()StructLikeWrapperset(StructLike newStruct)
-
-
-
Method Detail
-
forType
public static StructLikeWrapper forType(Types.StructType struct)
-
copyFor
public StructLikeWrapper copyFor(StructLike newStruct)
Creates a copy of this wrapper that wraps a struct.This is equivalent to
new StructLikeWrapper(type).set(newStruct)but is cheaper because no analysis of the type is necessary.- Parameters:
newStruct- aStructLikerow- Returns:
- a copy of this wrapper wrapping the give struct
-
set
public StructLikeWrapper set(StructLike newStruct)
-
get
public StructLike get()
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-