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

com.skillw.pouvoir.util.read.Char Maven / Gradle / Ivy

There is a newer version: 1.6.7-beta-6
Show newest version
package com.skillw.pouvoir.util.read;

public class Char {
    final char c;

    public Char(char c) {
        this.c = c;
    }

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

    @Override
    public boolean equals(Object o) {
        return (o instanceof Char) && ((Char) o).c == this.c;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy