SSSleyter Sandovalinsleyter.hashnode.dev·Dec 29, 2022 · 3 min readFunctional Interfaces in JavaFunctional Interface(FI) refers to a special kind of interface, it's an interface with only one abstract method, that is, FI can have many other implemented methods, but only one abstract method. package com.sosv.functional.generic; public interface...00
SSSleyter Sandovalinsleyter.hashnode.dev·Oct 13, 2021 · 3 min readOptional in javaSometimes we must handle null values in java and I know that's very problematical because it can throw the most famous exception(NullPointerException - NPE) and QA generate a superbug in Jira. jejeje So, what is optional? An optional is a container o...02TM