Home »
Java programming language
Java StringTokenizer nextElement() Method with Example
StringTokenizer Class nextElement() method: Here, we are going to learn about the nextElement() method of StringTokenizer Class with its syntax and example.
Submitted by Preeti Jain, on March 26, 2020
StringTokenizer Class nextElement() method
- nextElement() method is available in java.util package.
- nextElement() method is used to return the next element of this Standard Time.
- nextElement() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- nextElement() method does not throw an exception at the time of returning the next element.
Syntax:
public Object nextElement();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is Object, it returns it gets the next token available in this Standard Time.
Example:
// Java program to demonstrate the example
// of Object nextElement() method
// of StringTokenizer
import java.util.*;
public class NextElementOfStringTokenizer {
public static void main(String[] args) {
// Instantiates a StringTokenizer object
StringTokenizer str_t = new StringTokenizer("Welcome in Java World!!!");
// By using nextElement() method isto
// return the next element if exists
// in this StringTokenizer
System.out.println("str_t.nextElement(): ");
for (; str_t.hasMoreElements();)
System.out.println(str_t.nextElement());
}
}
Output
str_t.nextElement():
Welcome
in
Java
World!!!