All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bestvike.ValueType Maven / Gradle / Ivy

The newest version!
package com.bestvike;

import com.bestvike.linq.enumerable.Values;

/**
 * Created by 许崇雷 on 2019-05-28.
 */
public abstract class ValueType {
    protected ValueType() {
    }

    @Override
    public boolean equals(Object obj) {
        return Values.equals(this, obj);
    }

    @Override
    public int hashCode() {
        return Values.hashCode(this);
    }

    @Override
    public String toString() {
        return Values.toString(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy