El método setEndIndex() de la clase java.text.FieldPosition se utiliza para establecer el índice del carácter precedido por el último carácter en el objeto FieldPosition.
Sintaxis:
public void setEndIndex(int ei)
Parámetro : este método toma el índice de valor entero para el nuevo índice del carácter que está precedido por el último carácter en el objeto FieldPosition.
Valor devuelto: este método no tiene nada que devolver.
A continuación se muestran los ejemplos para ilustrar el método getEndIndex() :
Ejemplo 1:
// Java program to demonstrate // getEndIndex() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // new FieldPosition Object FieldPosition pos = new FieldPosition( MessageFormat.Field.ARGUMENT); // setting end index pos.setEndIndex(10); // getting end index of FieldPosition Object // using getEndIndex() mehtod int i = pos.getEndIndex(); // display result System.out.println("end index :- " + i); } catch (ClassCastException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
end index :- 10
Ejemplo 2:
// Java program to demonstrate // getEndIndex() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // new FieldPosition Object FieldPosition pos = new FieldPosition( DateFormat.Field.AM_PM); // setting end index pos.setEndIndex(5); // getting end index of FieldPosition Object // using getEndIndex() mehtod int i = pos.getEndIndex(); // display result System.out.println("end index :- " + i); } catch (ClassCastException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
end index :- 5
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/FieldPosition.html#setEndIndex-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