struct in java

Structs are not present in Java. We can simulate POJOs to act like structs.
  
edit: Since Java 14, we have Records,  which are easy to build structured data types.
Ionut Bogdan