El método isStandalone() de la enumeración TextStyle se usa para devolver verdadero si TextStyle es un estilo independiente.
Sintaxis:
public TextStyle isStandalone()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve verdadero si el estilo es un estilo independiente.
Los siguientes programas ilustran el método TextStyle.isStandalone():
Programa 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); } }
Producción:
TextStyle is Standalone:true
Programa 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); } }
Producción:
TextStyle is Standalone:false
Referencias: https://docs.oracle.com/javase/10/docs/api/java/time/format/TextStyle.html#isStandalone()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA