diff --git a/docs/xml/Java.Time.Temporal/ITemporalField.xml b/docs/xml/Java.Time.Temporal/ITemporalField.xml
index b081c3b2a..007ac050c 100644
--- a/docs/xml/Java.Time.Temporal/ITemporalField.xml
+++ b/docs/xml/Java.Time.Temporal/ITemporalField.xml
@@ -151,9 +151,24 @@
Java.Time.Temporal.ITemporalUnit
- To be added.
- To be added.
- To be added.
+ Gets the unit that the field is measured in.
+ the unit defining the base unit of the field, not null
+
+ Gets the unit that the field is measured in.
+ The unit of the field is the period that varies within the range.
+ For example, in the field MonthOfYear, the unit is Months.
+ See also getRangeUnit().
+
+
+ Java documentation for java.time.temporal.TemporalField.getBaseUnit().
+
+
+
+ Portions of this page are modifications based on work created and shared by the
+ Android Open Source Project
+ and used according to terms described in the
+ Creative Commons 2.5 Attribution License.
+
@@ -287,9 +302,25 @@
System.Boolean
- To be added.
- To be added.
- To be added.
+ Checks if this field represents a component of a date.
+ true if this field is a component of a date
+
+ Checks if this field represents a component of a date.
+ A field is date-based if it can be derived from
+ .
+ Both isDateBased() and isTimeBased() may return false,
+ such as for a field representing minute-of-week.
+
+
+ Java documentation for java.time.temporal.TemporalField.isDateBased().
+
+
+
+ Portions of this page are modifications based on work created and shared by the
+ Android Open Source Project
+ and used according to terms described in the
+ Creative Commons 2.5 Attribution License.
+
@@ -374,9 +405,25 @@
System.Boolean
- To be added.
- To be added.
- To be added.
+ Checks if this field represents a component of a time.
+ true if this field is a component of a time
+
+ Checks if this field represents a component of a time.
+ A field is time-based if it can be derived from
+ .
+ Both isDateBased() and isTimeBased() may return false,
+ such as for a field representing minute-of-week.
+
+
+ Java documentation for java.time.temporal.TemporalField.isTimeBased().
+
+
+
+ Portions of this page are modifications based on work created and shared by the
+ Android Open Source Project
+ and used according to terms described in the
+ Creative Commons 2.5 Attribution License.
+
@@ -516,9 +563,27 @@
Java.Time.Temporal.ITemporalUnit
- To be added.
- To be added.
- To be added.
+ Gets the unit that defines the range of the field.
+ the unit defining the range of the field, not null
+
+ Gets the unit that defines the range of the field.
+ The range of the field is the period that the field varies within.
+ For example, in the field MonthOfYear, the range is Years.
+ See also getBaseUnit().
+ The range is never null. For example, the Year field is shorthand for
+ YearOfForever. It therefore has a unit of Years and a range of
+ Forever.
+
+
+ Java documentation for java.time.temporal.TemporalField.getRangeUnit().
+
+
+
+ Portions of this page are modifications based on work created and shared by the
+ Android Open Source Project
+ and used according to terms described in the
+ Creative Commons 2.5 Attribution License.
+