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

com.github.kongchen.swagger.docgen.util.Utils Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package com.github.kongchen.swagger.docgen.util;

import scala.Option;

/**
 * Created with IntelliJ IDEA.
 * User: kongchen
 * Date: 1/21/14
 */
public class Utils {
    public static String getStrInOption(Option scalaStr ) {
        if (scalaStr.isEmpty()) return null;
        return scalaStr.get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy