El método isSupported(TemporalField) de la clase YearMonth se usa para verificar si el campo especificado es compatible con la clase YearMonth o no, lo que significa que al usar este método podemos verificar si este objeto YearMonth se puede consultar para el campo especificado.
Los campos admitidos de ChronoField son:
- MES_DE_AÑO
- PROLEPTIC_MES
- AÑO_DE_ERA
- AÑO
- ERA
Todas las demás instancias de ChronoField devolverán false.
Sintaxis:
public boolean isSupported(TemporalField field)
Parámetros: este método acepta solo un campo de parámetro que representa el campo a verificar.
Valor devuelto: este método devuelve el valor booleano verdadero si el campo es compatible con este mes del año, falso si no.
Los siguientes programas ilustran el método isSupported(TemporalField):
Programa 1:
// Java program to demonstrate // YearMonth.isSupported(TemporalField) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // Create a YearMonth object YearMonth thisYearMonth = YearMonth.of(2017, 8); // print instance System.out.println("YearMonth :" + thisYearMonth); // apply isSupported() method boolean value = thisYearMonth.isSupported( ChronoField.PROLEPTIC_MONTH); // print result System.out.println("PROLEPTIC_MONTH Field is supported by YearMonth class: " + value); } }
YearMonth :2017-08 PROLEPTIC_MONTH Field is supported by YearMonth class: true
Programa 2:
// Java program to demonstrate // YearMonth.isSupported(TemporalField) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // Create a YearMonth object YearMonth thisYearMonth = YearMonth.of(2017, 8); // print instance System.out.println("YearMonth :" + thisYearMonth); // apply isSupported() method boolean value = thisYearMonth.isSupported( ChronoField.HOUR_OF_DAY); // print result System.out.println("HOUR_OF_DAY Field is supported by YearMonth class: " + value); } }
YearMonth :2017-08 HOUR_OF_DAY Field is supported by YearMonth class: false
Referencias:
https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#isSupported(java.time.temporal.TemporalField)
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA