Convert Scala Option to Java Optional

前端 未结 7 1235
孤街浪徒
孤街浪徒 2021-02-12 15:39

I need to convert Scala Option to Java Optional. I managed to wrote this:

public  Optional convertOption2Optional(Option option) {
           


        
7条回答
  •  [愿得一人]
    2021-02-12 15:49

    You can also use some of the abundant utilities out there on the github, e.g.:

    https://gist.github.com/julienroubieu/fbb7e1467ab44203a09f

    https://github.com/scala/scala-java8-compat

提交回复
热议问题