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

src.org.codehaus.jackson.sym.Name Maven / Gradle / Ivy

Go to download

World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.

There is a newer version: 2.0.0-986
Show newest version
package org.codehaus.jackson.sym;

/**
 * Base class for tokenized names (key strings in objects) that have
 * been tokenized from byte-based input sources (like
 * {@link java.io.InputStream}.
 *
 * @author Tatu Saloranta
 */
public abstract class Name
{
    protected final String mName;

    protected final int mHashCode;

    protected Name(String name, int hashCode) {
        mName = name;
        mHashCode = hashCode;
    }

    public String getName() { return mName; }

    /*
    //////////////////////////////////////////////////////////
    // Methods for package/core parser
    //////////////////////////////////////////////////////////
     */

    public abstract boolean equals(int quad1);

    public abstract boolean equals(int quad1, int quad2);

    public abstract boolean equals(int[] quads, int qlen);

    /*
    //////////////////////////////////////////////////////////
    // Overridden standard methods
    //////////////////////////////////////////////////////////
     */

    @Override
        public String toString() { return mName; }

    @Override
        public final int hashCode() { return mHashCode; }

    @Override
        public boolean equals(Object o)
    {
        // Canonical instances, can usually just do identity comparison
        return (o == this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy