com.at.avro.mappers.RemovePlural Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avro-schema-generator Show documentation
Show all versions of avro-schema-generator Show documentation
Library for generating avro schema files (.avsc) based on DB tables structure
The newest version!
package com.at.avro.mappers;
import org.modeshape.common.text.Inflector;
import java.util.function.Function;
/**
* @author [email protected]
*/
public class RemovePlural implements Function {
private final Inflector inflector = new Inflector();
@Override
public String apply(String name) {
return inflector.singularize(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy