Interface TemporalAccessor

    • Method Summary

      Modifier and Type Method and Description
      default int get(TemporalField field)
      Gets the value of the specified field as an int.
      long getLong(TemporalField field)
      Gets the value of the specified field as a long.
      boolean isSupported(TemporalField field)
      Checks if the specified field is supported.
      default <R> R query(TemporalQuery<R> query)
      Queries this date-time.
      default ValueRange range(TemporalField field)
      Gets the range of valid values for the specified field.
    • Method Detail

      • isSupported

        boolean isSupported(TemporalField field)
        Checks if the specified field is supported.

        This checks if the date-time can be queried for the specified field. If false, then calling the range and get methods will throw an exception.

        Parameters:
        field - the field to check, null returns false
        Returns:
        true if this date-time can be queried for the field, false if not
      • range

        default ValueRange range(TemporalField field)
        Gets the range of valid values for the specified field.

        All fields can be expressed as a long integer. This method returns an object that describes the valid range for that value. The value of this temporal object is used to enhance the accuracy of the returned range. If the date-time cannot return the range, because the field is unsupported or for some other reason, an exception will be thrown.

        Note that the result only describes the minimum and maximum valid values and it is important not to read too much into them. For example, there could be values within the range that are invalid for the field.

        Parameters:
        field - the field to query the range for, not null
        Returns:
        the range of valid values for the field, not null
        Throws:
        DateTimeException - if the range for the field cannot be obtained
        UnsupportedTemporalTypeException - if the field is not supported
      • get

        default int get(TemporalField field)
        Gets the value of the specified field as an int.

        This queries the date-time for the value for the specified field. The returned value will always be within the valid range of values for the field. If the date-time cannot return the value, because the field is unsupported or for some other reason, an exception will be thrown.

        Parameters:
        field - the field to get, not null
        Returns:
        the value for the field, within the valid range of values
        Throws:
        DateTimeException - if a value for the field cannot be obtained or the value is outside the range of valid values for the field
        UnsupportedTemporalTypeException - if the field is not supported or the range of values exceeds an int
        ArithmeticException - if numeric overflow occurs
      • getLong

        long getLong(TemporalField field)
        Gets the value of the specified field as a long.

        This queries the date-time for the value for the specified field. The returned value may be outside the valid range of values for the field. If the date-time cannot return the value, because the field is unsupported or for some other reason, an exception will be thrown.

        Parameters:
        field - the field to get, not null
        Returns:
        the value for the field
        Throws:
        DateTimeException - if a value for the field cannot be obtained
        UnsupportedTemporalTypeException - if the field is not supported
        ArithmeticException - if numeric overflow occurs
      • query

        default <R> R query(TemporalQuery<R> query)
        Queries this date-time.

        This queries this date-time using the specified query strategy object.

        Queries are a key tool for extracting information from date-times. They exists to externalize the process of querying, permitting different approaches, as per the strategy design pattern. Examples might be a query that checks if the date is the day before February 29th in a leap year, or calculates the number of days to your next birthday.

        The most common query implementations are method references, such as LocalDate::from and ZoneId::from. Additional implementations are provided as static methods on TemporalQuery.

        Type Parameters:
        R - the type of the result
        Parameters:
        query - the query to invoke, not null
        Returns:
        the query result, null may be returned (defined by the query)
        Throws:
        DateTimeException - if unable to query
        ArithmeticException - if numeric overflow occurs