本文整理汇总了Java中org.apache.commons.collections.CollectionUtils.isEqualCollection方法的典型用法代码示例。如果您正苦于以下问题:Java CollectionUtils.isEqualCollection方法的具体用法?Java CollectionUtils.isEqualCollection怎么用?Java CollectionUtils.isEqualCollection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.collections.CollectionUtils
的用法示例。
在下文中一共展示了CollectionUtils.isEqualCollection方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testGetTopLevelKeys
import org.apache.commons.collections.CollectionUtils; //导入方法依赖的package包/类
@Test
public void testGetTopLevelKeys() {
List<String> expected = Lists.newArrayList("value1", "value2");
IData idata = IDataFactory.create();
IDataCursor cursor = idata.getCursor();
IDataUtil.put(cursor, "value1", "something");
IDataUtil.put(cursor, "value2", "another one");
cursor.destroy();
Document document = docFactory.wrap(idata);
CollectionUtils.isEqualCollection(expected, document.getKeys());
}
示例2: equals
import org.apache.commons.collections.CollectionUtils; //导入方法依赖的package包/类
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Attributes that = (Attributes) o;
if (firstName != null ? !firstName.equals(that.firstName) : that.firstName != null) return false;
if (middleName != null ? !middleName.equals(that.middleName) : that.middleName != null) return false;
if (surname != null ? !surname.equals(that.surname) : that.surname != null) return false;
if (dateOfBirth != null ? !dateOfBirth.equals(that.dateOfBirth) : that.dateOfBirth != null) return false;
if (address != null ? !address.equals(that.address) : that.address != null) return false;
if (addressHistory != null ? !(that.addressHistory != null && CollectionUtils.isEqualCollection(addressHistory, that.addressHistory)) : that.addressHistory != null) return false;
return cycle3 != null ? cycle3.equals(that.cycle3) : that.cycle3 == null;
}