List of usage examples for org.apache.thrift Option some
public static <T> Some<T> some(T value)
From source file:com.fjn.helper.frameworkex.apache.thrift.tutorial.Work.java
License:Apache License
public Option<String> getComment() { if (this.isSetComment()) { return Option.some(this.comment); } else {//from w w w .j a va2 s .c o m return Option.none(); } }