Showing posts with label Updates. Show all posts
Showing posts with label Updates. Show all posts

Thursday, May 9, 2019

Java 12 String API Additions

1. Overview

Java 12 added a few useful APIs to the commonly used String class. In this tutorial, we will explore and use these new APIs.

  • indent​(int n)
  • transform​(Function<? super String,​? extends R> f)
  • describeConstable()
  • resolveConstantDesc​(MethodHandles.Lookup lookup)


Take a look at Java 11 String API methods which are discussed in depth in the last article.


In all our example, we will use String string = "Java-W3schools";

2. indent (int n)

As the name suggests, the indent () instance method provides the indentation for the given string that means it will add or remove the white characters at the beginning of the string.

Where method argument n indicates the number of leading white space characters to add or remove.

2.1 Signature

public String indent​(int n)

If n value is positive then adds leading white spaces.
If n value is negative then removes leading white spaces.
If n value is zero then the input string is unchanged.

2.2 Example - n positive

See the example program on indent method with value 5.

String value = "indent";
System.out.println(value);
System.out.println(value.indent(5));

2.3 Output

indent
     indent

See the difference between the original string and indented string. Indented string now has 5 empty spaces added to it.

2.4 Example - n negative


In this example, passing a negative value to it and added 4 empty spaces to the input string at the beginning.

String value = "    indent";
System.out.println(value);
System.out.println(value.indent(5));

2.5 Output

Now observe the output and it has removed 2 empty spaces at the beginning.

    indent
  indent

If the input string is not having empty spaces at the beginning if n is negative then it will not do anything. Simply it returns the same string.

2.6 Example - n is zero

String inputNZero = "welcome";
System.out.println(inputNZero.indent(0));

2.7 Output

welcome

2.8 Internal Code

Internally, first, it converts the input string into lines by calling line() method then it will add n empty spaces by calling " ".repeat(n). Finally, it appends the empty spaces to each line at the beginning.


public String indent(int n) {
        return isEmpty() ? "" :  indent(n, false);
    }

    private String indent(int n, boolean removeBlanks) {
        Stream stream = removeBlanks ? lines(Integer.MAX_VALUE, Integer.MAX_VALUE)
                                             : lines();
        if (n > 0) {
            final String spaces = " ".repeat(n);
            stream = stream.map(s -> spaces + s);
        } else if (n == Integer.MIN_VALUE) {
            stream = stream.map(s -> s.stripLeading());
        } else if (n < 0) {
            stream = stream.map(s -> s.substring(Math.min(-n, s.indexOfNonWhitespace())));
        }
        return stream.collect(Collectors.joining("\n", "", "\n"));
    }


3. transform (Function<? super String, ? extends R> f)


Transform method is important and used to transform the string into one form to another form using Function Functional interface.

Must be used with lambda expression only because Function is part of Java 8 stream API.

3.1 Signature

public  R transform​(Function f)

3.2 Example


We will see a few scenarios in this example program now. If we want to convert all elements of List into uppercase or append some value to it, then the transform method is most usable.

  List fruits = new ArrayList<>();

  fruits.add("Mango");
  fruits.add("Apple");
  fruits.add("Banana");
  fruits.add("Avvacado");
  fruits.add("Papaya");

  List newFruitsList = fruits.stream().map(s -> s.transform(str -> str.toUpperCase())).collect(Collectors.toList());

  System.out.println(newFruitsList);


3.3 Output

From fruits list stream, taking one by one fruit name and passing to transform function which converts into uppercase by calling toUpperCase() method of String class. Collecting all outputs of transform() method into a List using Collectors.toList() method.

[MANGO, APPLE, BANANA, AVVACADO, PAPAYA]

Not only toUpperCase() method but also can be used any operation that can be performed on String either adding some content to it or anything. Now just adding "Halwa" to each string in the fruits list.

s -> s.transform(str -> str + " Halwa")

Now the newFruitsList will have the values with added " Halwa" string to each fruit name.

[Mango Halwa, Apple Halwa, Banana Halwa, Avvacado Halwa, Papaya Halwa]

3.4 Internal Code

Internally it just invokes the f.apply() method.

 public  R transform(Function f) {
        return f.apply(this);
    }

4. describeConstable()

Returns an Optional containing the nominal descriptor for this instance, which is the instance itself.

4.1 Signature

public Optional describeConstable()

Java 12 has introduced Constants API in JEP 334. If you look at the String class documentation, it implements two new interfaces from Constants API – Constable, and ConstantDesc. This method is declared in the Constable interface and implemented in the String class.

4.2 Example


 String status = "SUCCESS";
 Optional optional = status.describeConstable();
 System.out.println(optional);
 System.out.println(optional.get());
 System.out.println(optional.isPresent());

4.3 Output

Optional[SUCCESS]
SUCCESS
true

5. resolveConstantDesc (MethodHandles.Lookup lookup)

Resolves this instance as a ConstantDesc, the result of which is the instance itself.

5.1 Signature

public String resolveConstantDesc​(MethodHandles.Lookup lookup)

5.2 Example


 String string = "resolveConstantDesc​";
 String constDesc = string.resolveConstantDesc(MethodHandles.lookup());
 System.out.println(constDesc);

6. Conclusion

In this tutorial, We've seen the new methods added in Java 12 version. indent (...) and transform() methods add great value to String API. But describeConstable() and resolveConstantDesc methods are not much useful for developers when working on Strings.

Programs shown in this post are available on GitHub. All these programs are downloadable.


Wednesday, May 8, 2019

Java 11 String API New Methods

1. Java 11 String API New Methods Overview:

Java 11 is a new updated version with lots of changes similar to java 8. Java is free to use in production environments till java 10. But, java 11 onwards we should get license to use production environments.

String is a collection of characters including alphabets, numeric, special characters and as well supports 256 bit character set (any character).
Java 11 String API

Java strings are constants that means once created, values of string can not be changed. This is called as Immutable. Immutable is to get the advantage sharing the objects in multi-threading.

Following are the new methods added in Java 11 java.lang.String class.

Java 11 - String API New Methods

1.1 Java 11 String API Additions:

1) isBlank()
2) lines()
3) repeat​(int count)
4) strip()
5) stripLeading()
6) stripTrailing()

Thursday, May 2, 2019

Java 10 LVTI: Local Variable Type Inference Explained with Examples

Java 10 Local Variable Type Inference:

In this tutorial, We will learn what is Java 10 Local Variable Type Inference with examples.

Introduction:

Java 10 introduced a new shiny language feature called local variable type inference and One of the most obvious enhancements in JDK 10.
Type inference refers to the automatic detection of the datatype of a variable, done generally at the compiler time.

For the local variables, we can use a special reserved type "var" instead of actual type and var is not a keyword. This enhancement helps in reducing the boilerplate code.

Java 10 LVTI - Local Variable Type Inference Explained with Examples