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

org.onebusaway.gtfs.csv.schema.DefaultConverter Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package org.onebusaway.gtfs.csv.schema;

import org.apache.commons.beanutils.Converter;

public class DefaultConverter implements Converter {

  @Override
  public Object convert(@SuppressWarnings("rawtypes") Class type, Object value) {
    if (value == null)
      return "";
    return value.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy