I need to compare Sheets and I just noticed there is no equals() method in the class. It extends Iterable but if I have a custom made Pojo with a sheet inside, and make/override an equals() method, it will probably fail.
Does this mean I need to make a custom made "equals" that iterates over all the Rows/Cells?
Why doesn't Sheet have a equals()? Thanks
(source: https://poi.apache.org/apidocs/org/apache/poi/ss/usermodel/Sheet.html)
Sheetis an interface. Usually, interfaces do not declare standard methods (likeequals,hashCode,toStringetc.) Perhaps, you want to ask why its implementations do not overrideObject.equals- default locale