Sunday, November 23, 2025
HomeLanguagesJavaChoiceFormat getLimits() method in Java with Examples

ChoiceFormat getLimits() method in Java with Examples

The getLimits() method of java.text.ChoiceFormat class is used to get the attached limit to choice format object in time of initialization. It returns the array of double type with the limits.
Syntax: 
 

public double[] getLimits()

Parameter: This method does not accept any parameter.
Return Value: This method returns limit attached to the choice format object.
Below are the examples to illustrate the getLimits() method:
Example 1: 
 

Java




// Java program to demonstrate getLimits() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing ChoiceFormat
        ChoiceFormat cf
            = new ChoiceFormat(
                "4#wed| 5#thu | 6#fri | 7#sat");
 
        // getting limit attached to the ChoiceFormat
        // using getLimits() method
        double[] format = cf.getLimits();
 
        // display the result
        System.out.print("Limit: "
                         + Arrays.toString(format));
    }
}


Output: 

Limit: [4.0, 5.0, 6.0, 7.0]

 

Example 2: 
 

Java




// Java program to demonstrate getLimits() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing limit
        double[] limit = { 1, 2, 3, 4 };
 
        // creating and initializing format
        String[] format
            = { "add", "sub", "multiply", "divide" };
 
        // creating and initializing ChoiceFormat
        ChoiceFormat cf
            = new ChoiceFormat(limit, format);
 
        // getting limit attached to the ChoiceFormat
        // using getLimits() method
        double[] format = cf.getLimits();
 
        // display the result
        System.out.print("Limit: "
                         + Arrays.toString(format));
    }
}


Output: 

Limit: [add, sub, multiply, divide]

 

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

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS