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

org.opentripplanner.api.mapping.I18NStringMapper Maven / Gradle / Ivy

package org.opentripplanner.api.mapping;

import java.util.Locale;
import org.opentripplanner.util.I18NString;

public class I18NStringMapper {
    static String mapToApi(I18NString string, Locale locale) {
        return string == null ? null : string.toString(locale);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy