Método FieldPosition getEndIndex() en Java con ejemplo

El método getEndIndex() de la clase java.text.FieldPosition se utiliza para obtener el índice del carácter precedido por el último carácter en el objeto FieldPosition.

Sintaxis:

public int getEndIndex()

Parámetro : este método no acepta ningún argumento como parámetro.

Valor devuelto: este método devuelve el índice del carácter precedido por el último carácter en el objeto FieldPosition.

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(
                    DateFormat.Field.AM_PM);
  
            // getting end index of FieldPosition Object
            // using getEndIndex() method
            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 :- 0

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() method
            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#getEndIndex–

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 *