Final means that the reference can never change whereas String immutability means something different it means when a string is created (value not refrence i.e:" text") it can't be changed
look at this:
String x="Strings Are ";
String s=x;
now s and x both refrence the same string now:
x+=" Immutable Objects!";
System.out.println("x= "+x);
System.out.println("s= "+s);
This will print:
x= Strings Are Immutable Objects
s= Strings Are
This proves that any string created cannot be changed and when any change happens a new string get created.
Now for final if we declare x as final and try to change it's value you'll got an exception
final String x="Strings Are ";
x+=" Immutable Objects!";
and here is the exception
java.lang.RuntimeException: Uncompilable source code - cannot assign a value to final variable x