Open In App

FieldPosition getEndIndex() method in Java with Example

The getEndIndex() method of java.text.FieldPosition class is used to get the index of the character which is preceded by the last character in FieldPosition object.

Syntax:



public int getEndIndex()

Parameter: This method does not accepts any argument as parameter.

Return Value: This method returns the index of the character which is preceded by the last character in FieldPosition object.



Below are the examples to illustrate the getEndIndex() method:

Example 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);
        }
    }
}

Output:
end index :- 0

Example 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);
        }
    }
}

Output:
end index :- 5

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/FieldPosition.html#getEndIndex–


Article Tags :