// ============================================================================ // // Copyright (C) 2006-2016 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package org.talend.dataquality.indicators.mapdb; import java.io.Serializable; /** * created by talend on Aug 5, 2014 Detailled comment * */ public final class TupleEmpty implements Comparable<Object>, Serializable { /** * */ private static final long serialVersionUID = -6654296341607063353L; /* * (non-Javadoc) * * @see java.lang.Object#toString() */ @Override public String toString() { return "null"; //$NON-NLS-1$ } /* * (non-Javadoc) * * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (TupleEmpty.class.isInstance(obj)) { return true; } return false; } /* * (non-Javadoc) * * @see java.lang.Object#hashCode() */ @Override public int hashCode() { return this.toString().hashCode(); } /* * (non-Javadoc) * * @see java.lang.Comparable#compareTo(java.lang.Object) */ public int compareTo(Object o) { return 0; } }