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

io.swagger.codegen.v3.cli.cmd.Langs Maven / Gradle / Ivy

There is a newer version: 3.0.62
Show newest version
package io.swagger.codegen.v3.cli.cmd;

import ch.lambdaj.collection.LambdaIterable;
import io.swagger.codegen.v3.CodegenConfig;

import static ch.lambdaj.Lambda.on;
import static ch.lambdaj.collection.LambdaCollections.with;
import static java.util.ServiceLoader.load;

/**
 * User: lanwen Date: 24.03.15 Time: 20:25
 */
public class Langs implements Runnable {
    @Override
    public void run() {
        LambdaIterable langs =
                with(load(CodegenConfig.class)).extract(on(CodegenConfig.class).getName());
        System.out.printf("Available languages: %s%n", langs);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy