Tuesday, February 24, 2026
HomeLanguagesJavaTextStyle isStandalone() method in Java with Examples

TextStyle isStandalone() method in Java with Examples

The isStandalone() method of TextStyle enum is used to return true if the TextStyle is a stand-alone style.

Syntax:

public TextStyle isStandalone()

Parameters: This method accepts nothing.

Return value: This method returns true if the style is a stand-alone style.

Below programs illustrate the TextStyle.isStandalone() method:
Program 1:




// Java program to demonstrate
// TextStyle.isStandalone() method
  
import java.time.format.TextStyle;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // get TextStyle
        TextStyle style
            = TextStyle.valueOf(
                "SHORT_STANDALONE");
  
        // apply isStandalone()
        boolean isStandaloneAttribute
            = style.isStandalone();
  
        // print
        System.out.println(
            "TextStyle is Standalone:"
            + isStandaloneAttribute);
    }
}


Output:

TextStyle is Standalone:true

Program 2:




// Java program to demonstrate
// TextStyle.isStandalone() method
  
import java.time.format.TextStyle;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // get TextStyle
        TextStyle style
            = TextStyle.valueOf("FULL");
  
        // apply isStandalone()
        boolean isStandaloneAttribute
            = style.isStandalone();
  
        // print
        System.out.println(
            "TextStyle is Standalone:"
            + isStandaloneAttribute);
    }
}


Output:

TextStyle is Standalone:false

References: https://docs.oracle.com/javase/10/docs/api/java/time/format/TextStyle.html#isStandalone()

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS