当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java TextStyle asStandalone()用法及代码示例


TextStyle枚举的asStandalone()方法用于返回具有与此TextStyle对象相同大小的stand-alone样式。

用法:

public TextStyle asStandalone()

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


返回值:此方法返回相同大小的stand-alone样式。

以下示例程序旨在说明TextStyle.asStandalone()方法:
程序1:

// Java program to demonstrate 
// TextStyle.asStandalone() method 
  
import java.time.format.TextStyle; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // get TextStyle 
        TextStyle style 
            = TextStyle.valueOf("SHORT"); 
  
        // apply asStandalone() 
        TextStyle asStandaloneAttribute 
            = style.asStandalone(); 
  
        // print 
        System.out.println( 
            "Standlone TextStyle:"
            + asStandaloneAttribute); 
    } 
}
输出:
Standlone TextStyle:SHORT_STANDALONE

程序2:

// Java program to demonstrate 
// TextStyle.asStandalone() method 
  
import java.time.format.TextStyle; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // get TextStyle 
        TextStyle style 
            = TextStyle.valueOf("FULL"); 
  
        // apply asStandalone() 
        TextStyle asStandaloneAttribute 
            = style.asStandalone(); 
  
        // print 
        System.out.println("Standlone TextStyle:"
                           + asStandaloneAttribute); 
    } 
}
输出:
Standlone TextStyle:FULL_STANDALONE

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



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 TextStyle asStandalone() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。