當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java TextStyle isStandalone()用法及代碼示例


如果TextStyle是stand-alone樣式,則使用TextStyle枚舉的isStandalone()方法返回true。

用法:

public TextStyle isStandalone()

參數:此方法不接受任何內容。


返回值:如果樣式是stand-alone樣式,則此方法返回true。

以下示例程序旨在說明TextStyle.isStandalone()方法:
程序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); 
    } 
}
輸出:
TextStyle is Standalone:true

程序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); 
    } 
}
輸出:
TextStyle is Standalone:false

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



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 TextStyle isStandalone() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。