how to check if a java array includes code example
Example 1: java check if element exists in array
// Convert to stream and test it
boolean result = Arrays.stream(alphabet).anyMatch("A"::equals);
if (result) {
System.out.println("Hello A");
}
Copy
Example 2: arrays .contains methof
private static final Set<String> VALUES = Set.of(
"AB","BC","CD","AE"
);