FieldPosition setBeginIndex() method in Java with Example Last Updated : 30 Jul, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report The setBeginIndex() method of java.text.FieldPosition class is used to set the index of the beginning character of the FieldPosition object.Syntax: public void setBeginIndex(int index) Parameter: This method takes the integer value index for the new index of the starting character of the FieldPosition object.Return Value: This method has nothing to return.Below are the examples to illustrate the setBeginIndex() method:Example 1: Java // Java program to demonstrate // setBeginIndex() 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 begin index of FieldPosition Object // using setBeginIndex() method pos.setBeginIndex(5); // getting begin index of FieldPosition Object int i = pos.getBeginIndex(); // display result System.out.println("begin index :- " + i); } catch (ClassCastException e) { System.out.println("Exception thrown : " + e); } } } Output: begin index :- 5 Example 2: Java // Java program to demonstrate // setBeginIndex() 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 begin index of FieldPosition Object // using setBeginIndex() method pos.setBeginIndex(10); // getting begin index of FieldPosition Object int i = pos.getBeginIndex(); // display result System.out.println("begin index :- " + i); } catch (ClassCastException e) { System.out.println("Exception thrown : " + e); } } } Output: begin index :- 10 Reference: https://docs.oracle.com/javase/9/docs/api/java/text/FieldPosition.html#setBeginIndex-int- Comment More infoAdvertise with us Next Article Field set() method in Java with Examples R rohitprasad3 Follow Improve Article Tags : Java Java-Functions Java-text package Java-FieldPosition Practice Tags : Java Similar Reads FieldPosition setEndIndex() method in Java with Example The setEndIndex() method of java.text.FieldPosition class is used to set the index of the character which is preceded by the last character in FieldPosition object. Syntax: public void setEndIndex(int ei) Parameter: This method takes the integer value index for the new index of the character which i 2 min read Field setInt() method in Java with Examples setInt() method of java.lang.reflect.Field used to set the value of a field as an int on the specified object. When you need to set the value of a field of an object as int then you can use this method to set value over an Object. Syntax: public void setInt(Object obj, int i) throws IllegalArgumentE 3 min read Field set() method in Java with Examples The set() method of java.lang.reflect.Field is used to set the value of the field represented by this Field object on the specified object argument to the specified new value passed as parameter. The new value is automatically unwrapped if the underlying field has a primitive type. If the field is s 4 min read FieldPosition getField() method in Java with Example The getField() method of java.text.FieldPosition class is used to retrieve the field identifier of this field position object.Syntax: public int getField() Parameter: This method does not accepts any argument as parameter.Return Value: This method returns the field identifier of this field position 2 min read 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 t 2 min read FieldPosition getBeginIndex() method in Java with Example The getBeginIndex() method of java.text.FieldPosition class is used to get the index of the beginning character of the FieldPosition object. Syntax: public int getBeginIndex() Parameter: This method does not accept any argument as a parameter. Return Value: This method returns the index of the begin 2 min read Like