El método getOffset() de la clase java.text.CollationElementIterator se utiliza para obtener el índice del elemento presente en el intercalador señalado actualmente por CollationElementIterator.
Sintaxis:
public int getOffset()
Parámetro : Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el desplazamiento del elemento apuntado actualmente por el iterador.
A continuación se muestran los ejemplos para ilustrar el método getOffset() :
Ejemplo 1:
// Java program to demonstrate getOffset() 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 cel.setOffset(4); // getting offset of cel // using getOffset() method int value = cel.getOffset(); // display the result System.out.println("current offset is " + value); } }
Producción:
current offset is 4
Ejemplo 2:
// Java program to demonstrate getOffset() 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 cel.setOffset(4); // calling next element cel.next(); // getting offset of cel // using getOffset() method int value = cel.getOffset(); // display the result System.out.println("current offset is " + value); } }
Producción:
current offset is 5
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/CollationElementIterator.html#getOffset–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA