El método anterior() de la clase java.text.CollationElementIterator se usa para obtener el elemento Collator anterior. Este método empuja el iterador al elemento anterior y devuelve su valor.
Sintaxis:
public int previous()
Parámetro : este método acepta cualquier parámetro.
Valor devuelto: este método devuelve el valor del elemento de intercalación anterior .
A continuación se muestran los ejemplos para ilustrar el método anterior() :
Ejemplo 1:
// Java program to demonstrate previous() 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(3); // display the result System.out.println("current offset before" + " calling previous() " + cel.getOffset()); // getting offset of the previous collator element // using previous() method int value = cel.previous(); // display the result System.out.println("\ncurrent element value after" + " calling previous() " + value); } }
Producción:
current offset before calling previous() 3 current element value after calling previous() 5505024
Ejemplo 2:
// Java program to demonstrate previous() 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 2 cel.setOffset(2); // display the result System.out.println("current offset before" + " calling previous() " + cel.getOffset()); // getting offset of the previous collator element // using previous() method int value = cel.previous(); // display the result System.out.println("\ncurrent offset after" + " calling previous() " + cel.getOffset()); } }
Producción:
current offset before calling previous() 2 current offset after calling previous() 1
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