Thursday, July 2, 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

1 COMMENT

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6966 POSTS0 COMMENTS