Convert String to LowerCase in Java
Convert String to LowerCase in Java Example describes about Converting a String to LowerCase in Java.
Convert String to LowerCase in Java Example describes about Converting a String to LowerCase in Java.
Convert String to UpperCase in Java Example describes about Converting a String to UpperCase in Java.
Convert Java Primitive to String Example describes about Converting a Primitive Type Value To String In Java.
There are two ways, you can able to convert java primitive type value into a string.
Convert short to String in Java Example describes about Convert short to String in Java.
Short class helps to wrap the primitive type value of short in an object.
In addition, It also provides several utility methods which helps the conversion of short to String and String to short
When you need to Convert short to String in Java, we can use Short.toString(short d) method of Short class, It will convert the short to String.
If you need an Short object in lieu of primitive short, you need to use Short.valueOf(short d) method. This will convert the short primitive to Short Object
Convert char To String in Java Example describes about How To Convert char To String in Java.
Character class helps to wrap the primitive type value of char in an object. It also provides several utility functions for determining whether a character is lowercase, uppercase, digit, etc.