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

org.opentripplanner.util.NonLocalizedString Maven / Gradle / Ivy

package org.opentripplanner.util;

import java.io.Serializable;
import java.util.Locale;

/**
 * This is to support strings which can't be localized.
 *
 * It just returns string it is given in constructor.
 *
 * @author mabu
 */
public class NonLocalizedString implements I18NString, Serializable {
    private String name;

    public NonLocalizedString(String name) {
        this.name = name;
    }

    @Override
    public boolean equals(Object other) {
        return other instanceof NonLocalizedString && this.name.equals(((NonLocalizedString)other).name);
    }

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

    @Override
    public String toString(Locale locale) {
        return this.name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy