in.ashwanthkumar.utils.lang.option.Some Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of my-java-utils Show documentation
Show all versions of my-java-utils Show documentation
My personal set of utils that I take along with my java projects.
package in.ashwanthkumar.utils.lang.option;
public class Some extends Option {
public Some(T value) {
super(value);
}
@Override
public T get() throws IllegalStateException {
return data;
}
}