Answers for "howto say if this is the first element in the list java"

3

find first element of list java

final Object firstElement = list.stream()
  .findFirst()
  .orElse(new Object()) //Give a default value if there are no elements
  
final Object firstElement = list.stream()
  .findFirst()
  .orElseThrow(() -> new Exception()) //Throw an exception if there are no elements
Posted by: Guest on August-31-2020

Code answers related to "howto say if this is the first element in the list java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language