The version 1.8.0_382-b05 you see refers to Java 8 (JDK 8), specifically to update 382. So this is a higher version than JDK 8u162 (which corresponds to Java 8 update 162).
To clarify:
1.8.0_162 means Java 8 update 162.
1.8.0_382 means Java 8 update 382.
Both are from the Java 8 family, but 382 is a later release than 162. So yes, 1.8.0_382 is a higher runtime version than 1.8.0_162, but it’s still part of the JDK 8 series.
The JDK versions are separate from runtime (JRE), but since you're seeing the runtime version here, it's confirming the version of the JRE used by the system. The "b05" part at the end refers to the build number of the release, which can differ between updates, but the key here is the update number (_382 vs _162).
Hope that clears things up! Let me know if you need more details!