com.github.davidmoten.oas3.internal.model.ModelTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-to-plantuml Show documentation
Show all versions of openapi-to-plantuml Show documentation
Generates PlantUML file from an OpenAPI 3.0 Definition
The newest version!
package com.github.davidmoten.oas3.internal.model;
import java.util.function.Function;
public interface ModelTransformer extends Function {
T createHasPuml(String puml);
static ModelTransformer identity() {
return new ModelTransformer() {
@Override
public Model apply(Model t) {
return t;
}
@SuppressWarnings("unchecked")
@Override
public T createHasPuml(String puml) {
return (T) new Puml(puml);
}
};
}
}