OffsetTime isSupported(TemporalField field)
checks if the specified field is supported.
The supported fields are:
NANO_OF_SECOND /*from ww w .j a v a 2 s. com*/ NANO_OF_DAY MICRO_OF_SECOND MICRO_OF_DAY MILLI_OF_SECOND MILLI_OF_DAY SECOND_OF_MINUTE SECOND_OF_DAY MINUTE_OF_HOUR MINUTE_OF_DAY HOUR_OF_AMPM CLOCK_HOUR_OF_AMPM HOUR_OF_DAY CLOCK_HOUR_OF_DAY AMPM_OF_DAY OFFSET_SECONDS
All other ChronoField instances will return false.
isSupported
has the following syntax.
public boolean isSupported(TemporalField field)
The following example shows how to use isSupported
.
import java.time.OffsetTime; import java.time.temporal.ChronoField; //from w ww. java2 s . c o m public class Main { public static void main(String[] args) { OffsetTime m = OffsetTime.now(); boolean z = m.isSupported(ChronoField.HOUR_OF_DAY); System.out.println(z); } }
The code above generates the following result.