BreakIterator isBoundary() method in Java with Examples Last Updated : 27 Nov, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The isBoundary() method of java.text.BreakIterator class is used to check if the passed offset is boundary or not. Syntax: public boolean isBoundary(int offset) Parameter: This method takes offset as a parameter for checking if it is a boundary or not. Return Value: This method provides true if the passed offset is boundary otherwise false. Below are the examples to illustrate the isBoundary() method: Example 1: Java // Java program to demonstrate isBoundary() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing BreakIterator BreakIterator wb = BreakIterator.getWordInstance(); // setting text for BreakIterator wb.setText("Code Geeks"); // checking for the boundary // by using isBoundary() method boolean status = wb.isBoundary(0); // display the result if (status) System.out.println("offset is a boundary"); else System.out.println("offset is not a boundary"); } } Output: offset is a boundary Example 2: Java // Java program to demonstrate isBoundary() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing BreakIterator BreakIterator wb = BreakIterator.getWordInstance(); // setting text for BreakIterator wb.setText("Code Geeks"); // checking for the boundary // by using isBoundary() method boolean status = wb.isBoundary(2); // display the result if (status) System.out.println("offset is a boundary"); else System.out.println("offset is not a boundary"); } } Output: offset is not a boundary Reference: https://docs.oracle.com/javase/9/docs/api/java/text/BreakIterator.html#isBoundary-int- Comment More infoAdvertise with us Next Article BreakIterator next(int) method in Java with Examples R rohitprasad3 Follow Improve Article Tags : Java Java-Functions Java-text package Java-BreakIterator Practice Tags : Java Similar Reads BreakIterator next(int) method in Java with Examples The next() method of java.text.BreakIterator class is used to get the index of the nth next boundary from the current boundary(boundary retrieved by calling current() method). It provides the offset of the first character of boundary which follows or precedes the current boundary pointed by BreakIte 3 min read BreakIterator first() method in Java with Examples The first() method of java.text.BreakIterator class is used to get the index of the first boundary.it always return the start index of first boundary.it provides the offset of first character of first boundary. Syntax: public abstract int first() Parameter: This method does not accept any parameter. 2 min read BreakIterator following() method in Java with Examples The following() method of java.text.BreakIterator class is used to return the index of the first boundary which is present after the specified offset in the line of text. it provides the offset of the first character of the next boundary which follows the passed offset's boundary. Syntax: public abs 3 min read BreakIterator next() method in Java with Examples The next() method of java.text.BreakIterator class is used to get the index of the next boundary ahead of the current boundary(boundary retrieved by calling current() method). it provides the offset of the first character of boundary which follows the current boundary pointed by BreakIterator. Synta 2 min read BreakIterator last() method in Java with Examples The last() method of java.text.BreakIterator class is used to get the index of the last boundary. It always return the offset of the last character of last boundary. Syntax: public abstract int last() Parameter: This method does not accept any parameter. Return Value: This method provides the index 2 min read BreakIterator getText() method in Java with Examples The getText() method of java.text.BreakIterator class is used to get the text previously set by the setText() method in breakiterator.Syntax: public abstract CharacterIterator getText() Parameter: This method does not accept any parameter.Return Value: This method provides the text scanned previousl 2 min read Like