Método CollationElementIterator next() en Java con ejemplos

El método next() de la clase java.text.CollationElementIterator se utiliza para obtener el siguiente elemento de Collator. Este método empuja al iterador al siguiente elemento y devuelve su valor.

Sintaxis:

public int next()

Parámetro : este método acepta cualquier parámetro.

Valor devuelto: este método devuelve el valor del siguiente elemento de intercalación como un valor entero .

A continuación se muestran los ejemplos para ilustrar el método next() :

Ejemplo 1:

// Java program to demonstrate next() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing testString
        String test = "abcd";
  
        // creating and initializing
        // RuleBasedCollator object
        RuleBasedCollator rbc
            = (RuleBasedCollator)(Collator.getInstance());
  
        // creating and initializing
        // CollationElementIterator
        CollationElementIterator cel
            = rbc.getCollationElementIterator(test);
  
        // setting offset to index 4
        cel.setOffset(1);
  
        // display the result
        System.out.println("current offset before"
                           + " calling next() "
                           + cel.getOffset());
  
        // getting offset of the next collator element
        // using next() method
        int value = cel.next();
  
        // display the result
        System.out.println("\ncurrent element value"
                           + " after calling next() "
                           + value);
    }
}
Producción:

current offset before calling next() 1

current element value after calling next() 5439488

Ejemplo 2:

// Java program to demonstrate next() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing testString
        String test = "abcd";
  
        // creating and initializing
        // RuleBasedCollator object
        RuleBasedCollator rbc
            = (RuleBasedCollator)(Collator.getInstance());
  
        // creating and initializing
        // CollationElementIterator
        CollationElementIterator cel
            = rbc.getCollationElementIterator(test);
  
        // setting offset to index 4
        cel.setOffset(2);
  
        // display the result
        System.out.println("current offset before"
                           + " calling next() "
                           + cel.getOffset());
  
        // getting offset of the next collator element
        // using next() method
        int value = cel.next();
  
        // display the result
        System.out.println("\ncurrent offset after"
                           + " calling next() "
                           + cel.getOffset());
    }
}
Producción:

current offset before calling next() 2

current offset after calling next() 3

Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/CollationElementIterator.html#next–

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *