📜  Java中的 TextStyle isStandalone() 方法及示例

📅  最后修改于: 2022-05-13 01:55:44.524000             🧑  作者: Mango

Java中的 TextStyle isStandalone() 方法及示例

如果 TextStyle 是独立样式,则TextStyle 枚举isStandalone()方法用于返回 true。

句法:

public TextStyle isStandalone()

参数:此方法不接受任何内容。

返回值:如果样式是独立样式,此方法返回true

下面的程序说明了 TextStyle.isStandalone() 方法:
方案一:

// 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);
    }
}
输出:
TextStyle is Standalone:true

方案二:

// 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);
    }
}
输出:
TextStyle is Standalone:false

参考资料:https: Java/time/format/TextStyle.html#isStandalone()