El método setOffset() de la clase java.text.CollationElementIterator se utiliza para establecer el cursor del iterador en el índice particular pasado como parámetro.
Sintaxis:
public void setOffset(int newOffset)
Parámetro : Este método toma un valor entero newOffset en el punto en el que se debe establecer el cursor.
Valor devuelto: este método no tiene nada que devolver.
A continuación se muestran los ejemplos para ilustrar el método setOffset() :
Ejemplo 1:
Java
// Java program to demonstrate // setOffset() 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 = "Code Geeks 123"; // creating and initializing // RuleBasedCollator object RuleBasedCollator rbc = (RuleBasedCollator)(Collator.getInstance()); // creating and initializing // CollationElementIterator CollationElementIterator cel = rbc.getCollationElementIterator(test); // setting offset to index 4 // using setOffset() method cel.setOffset(4); // display the result System.out.println("current offset is " + cel.getOffset()); } }
Producción:
current offset is 4
Ejemplo 2:
Java
// Java program to demonstrate // setOffset() 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 = "GeeksForGeeks"; // creating and initializing // RuleBasedCollator object RuleBasedCollator rbc = (RuleBasedCollator)(Collator.getInstance()); // creating and initializing // CollationElementIterator CollationElementIterator cel = rbc.getCollationElementIterator(test); // after call of setOffset() method // all next() method will become redundent cel.next(); cel.next(); cel.next(); cel.next(); // setting cursor of iterator to index 0 // using setOffset() method cel.setOffset(0); // display the result System.out.println("current offset is " + cel.getOffset()); } }
Producción:
current offset is 0
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/CollationElementIterator.html#setOffset-int-
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA