Package com.google.type (2.11.0) Stay organized with collections Save and categorize content based on your preferences.
- 2.65.0 (latest)
- 2.64.1
- 2.63.2
- 2.62.0
- 2.61.3
- 2.60.0
- 2.59.2
- 2.58.0
- 2.57.0
- 2.56.0
- 2.54.1
- 2.53.0
- 2.52.0
- 2.51.0
- 2.50.1
- 2.49.0
- 2.48.0
- 2.46.0
- 2.45.1
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.40.0
- 2.39.1
- 2.38.0
- 2.37.1
- 2.36.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.30.0
- 2.29.0
- 2.28.0
- 2.27.0
- 2.26.0
- 2.25.1
- 2.24.0
- 2.23.1
- 2.22.1
- 2.21.1
- 2.15.0
- 2.14.3
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.6
- 2.8.4
- 2.7.4
Classes
CalendarPeriodProto
Color
Represents a color in the RGBA color space. This representation is designed for simplicity of conversion to/from color representations in various languages over compactness. For example, the fields of this representation can be trivially provided to the constructor ofjava.awt.Color in Java; it can also be trivially provided to UIColor's+colorWithRed:green:blue:alpha method in iOS; and, with just a little work, it can be easily formatted into a CSSrgba() string in JavaScript. This reference page doesn't carry information about the absolute color space that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default, applications should assume the sRGB color space. When color equality needs to be decided, implementations, unless documented otherwise, treat two colors as equal if all their red, green, blue, and alpha values each differ by at most 1e-5. Example (Java): import com.google.type.Color; // ... public static java.awt.Color fromProto(Color protocolor) { float alpha = protocolor.hasAlpha() ? protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); } public static Color toProto(java.awt.Color color) { float red = (float) color.getRed(); float green = (float) color.getGreen(); float blue = (float) color.getBlue(); float denominator = 255.0; Color.Builder resultBuilder = Color .newBuilder() .setRed(red / denominator) .setGreen(green / denominator) .setBlue(blue / denominator); int alpha = color.getAlpha(); if (alpha != 255) { result.setAlpha( FloatValue .newBuilder() .setValue(((float) alpha) / denominator) .build()); } return resultBuilder.build(); } // ... Example (iOS / Obj-C): // ... static UIColor* fromProto(Color* protocolor) { float red = [protocolor red]; float green = [protocolor green]; float blue = [protocolor blue]; FloatValue* alpha_wrapper = [protocolor alpha]; float alpha = 1.0; if (alpha_wrapper != nil) { alpha = [alpha_wrapper value]; } return [UIColor colorWithRed:red green:green blue:blue alpha:alpha]; } static Color* toProto(UIColor* color) { CGFloat red, green, blue, alpha; if (![color getRed:&red green:&green blue:&blue alpha:&alpha]) { return nil; } Color* result = [[Color alloc] init]; [result setRed:red]; [result setGreen:green]; [result setBlue:blue]; if (alpha <= 0.9999) { [result setAlpha:floatWrapperWithValue(alpha)]; } [result autorelease]; return result; } // ... Example (JavaScript): // ... var protoToCssColor = function(rgb_color) { var redFrac = rgb_color.red || 0.0; var greenFrac = rgb_color.green || 0.0; var blueFrac = rgb_color.blue || 0.0; var red = Math.floor(redFrac * 255); var green = Math.floor(greenFrac * 255); var blue = Math.floor(blueFrac * 255); if (!('alpha' in rgb_color)) { return rgbToCssColor(red, green, blue); } var alphaFrac = rgb_color.alpha.value || 0.0; var rgbParams = [red, green, blue].join(','); return ['rgba(', rgbParams, ',', alphaFrac, ')'].join(''); }; var rgbToCssColor = function(red, green, blue) { var rgbNumber = new Number((red << 16) | (green << 8) | blue); var hexString = rgbNumber.toString(16); var missingZeros = 6 - hexString.length; var resultBuilder = ['#']; for (var i = 0; i < missingZeros; i++) { resultBuilder.push('0'); } resultBuilder.push(hexString); return resultBuilder.join(''); }; // ...
Protobuf typegoogle.type.Color
Color.Builder
Represents a color in the RGBA color space. This representation is designed for simplicity of conversion to/from color representations in various languages over compactness. For example, the fields of this representation can be trivially provided to the constructor ofjava.awt.Color in Java; it can also be trivially provided to UIColor's+colorWithRed:green:blue:alpha method in iOS; and, with just a little work, it can be easily formatted into a CSSrgba() string in JavaScript. This reference page doesn't carry information about the absolute color space that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default, applications should assume the sRGB color space. When color equality needs to be decided, implementations, unless documented otherwise, treat two colors as equal if all their red, green, blue, and alpha values each differ by at most 1e-5. Example (Java): import com.google.type.Color; // ... public static java.awt.Color fromProto(Color protocolor) { float alpha = protocolor.hasAlpha() ? protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); } public static Color toProto(java.awt.Color color) { float red = (float) color.getRed(); float green = (float) color.getGreen(); float blue = (float) color.getBlue(); float denominator = 255.0; Color.Builder resultBuilder = Color .newBuilder() .setRed(red / denominator) .setGreen(green / denominator) .setBlue(blue / denominator); int alpha = color.getAlpha(); if (alpha != 255) { result.setAlpha( FloatValue .newBuilder() .setValue(((float) alpha) / denominator) .build()); } return resultBuilder.build(); } // ... Example (iOS / Obj-C): // ... static UIColor* fromProto(Color* protocolor) { float red = [protocolor red]; float green = [protocolor green]; float blue = [protocolor blue]; FloatValue* alpha_wrapper = [protocolor alpha]; float alpha = 1.0; if (alpha_wrapper != nil) { alpha = [alpha_wrapper value]; } return [UIColor colorWithRed:red green:green blue:blue alpha:alpha]; } static Color* toProto(UIColor* color) { CGFloat red, green, blue, alpha; if (![color getRed:&red green:&green blue:&blue alpha:&alpha]) { return nil; } Color* result = [[Color alloc] init]; [result setRed:red]; [result setGreen:green]; [result setBlue:blue]; if (alpha <= 0.9999) { [result setAlpha:floatWrapperWithValue(alpha)]; } [result autorelease]; return result; } // ... Example (JavaScript): // ... var protoToCssColor = function(rgb_color) { var redFrac = rgb_color.red || 0.0; var greenFrac = rgb_color.green || 0.0; var blueFrac = rgb_color.blue || 0.0; var red = Math.floor(redFrac * 255); var green = Math.floor(greenFrac * 255); var blue = Math.floor(blueFrac * 255); if (!('alpha' in rgb_color)) { return rgbToCssColor(red, green, blue); } var alphaFrac = rgb_color.alpha.value || 0.0; var rgbParams = [red, green, blue].join(','); return ['rgba(', rgbParams, ',', alphaFrac, ')'].join(''); }; var rgbToCssColor = function(red, green, blue) { var rgbNumber = new Number((red << 16) | (green << 8) | blue); var hexString = rgbNumber.toString(16); var missingZeros = 6 - hexString.length; var resultBuilder = ['#']; for (var i = 0; i < missingZeros; i++) { resultBuilder.push('0'); } resultBuilder.push(hexString); return resultBuilder.join(''); }; // ...
Protobuf typegoogle.type.Color
ColorProto
Date
Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:
- A full date, with non-zero year, month, and day values
- A month and day value, with a zero year, such as an anniversary
- A year on its own, with zero month and day values
- A year and month value, with a zero day, such as a credit card expirationdateRelated types aregoogle.type.TimeOfDay and
google.protobuf.Timestamp.
Protobuf typegoogle.type.Date
Date.Builder
Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:
- A full date, with non-zero year, month, and day values
- A month and day value, with a zero year, such as an anniversary
- A year on its own, with zero month and day values
- A year and month value, with a zero day, such as a credit card expirationdateRelated types aregoogle.type.TimeOfDay and
google.protobuf.Timestamp.
Protobuf typegoogle.type.Date
DateProto
DateTime
Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways:
- When utc_offset is set and time_zone is unset: a civil time on a calendarday with a particular offset from UTC.
- When time_zone is set and utc_offset is unset: a civil time on a calendarday in a particular time zone.
- When neither time_zone nor utc_offset is set: a civil time on a calendarday in local time.The date is relative to the Proleptic Gregorian Calendar.If year is 0, the DateTime is considered not to have a specific year. monthand day must have valid, non-zero values.This type may also be used to represent a physical time if all the date andtime fields are set and either case of the
time_offsetoneof is set.Consider usingTimestampmessage for physical time instead. If your usecase also would like to store the user's timezone, that can be done inanother field.This type is more flexible than some applications may want. Make sure todocument and validate your application's limitations.
Protobuf typegoogle.type.DateTime
DateTime.Builder
Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways:
- When utc_offset is set and time_zone is unset: a civil time on a calendarday with a particular offset from UTC.
- When time_zone is set and utc_offset is unset: a civil time on a calendarday in a particular time zone.
- When neither time_zone nor utc_offset is set: a civil time on a calendarday in local time.The date is relative to the Proleptic Gregorian Calendar.If year is 0, the DateTime is considered not to have a specific year. monthand day must have valid, non-zero values.This type may also be used to represent a physical time if all the date andtime fields are set and either case of the
time_offsetoneof is set.Consider usingTimestampmessage for physical time instead. If your usecase also would like to store the user's timezone, that can be done inanother field.This type is more flexible than some applications may want. Make sure todocument and validate your application's limitations.
Protobuf typegoogle.type.DateTime
DateTimeProto
DayOfWeekProto
Decimal
A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's [BigDecimal][] or Python'sdecimal.Decimal. [BigDecimal]:https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html
Protobuf typegoogle.type.Decimal
Decimal.Builder
A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's [BigDecimal][] or Python'sdecimal.Decimal. [BigDecimal]:https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html
Protobuf typegoogle.type.Decimal
DecimalProto
Expr
Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented athttps://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.
Protobuf typegoogle.type.Expr
Expr.Builder
Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented athttps://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.
Protobuf typegoogle.type.Expr
ExprProto
Fraction
Represents a fraction in terms of a numerator divided by a denominator.
Protobuf typegoogle.type.Fraction
Fraction.Builder
Represents a fraction in terms of a numerator divided by a denominator.
Protobuf typegoogle.type.Fraction
FractionProto
Interval
Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time.
Protobuf typegoogle.type.Interval
Interval.Builder
Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time.
Protobuf typegoogle.type.Interval
IntervalProto
LatLng
An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84 standard</a>. Values must be within normalized ranges.
Protobuf typegoogle.type.LatLng
LatLng.Builder
An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84 standard</a>. Values must be within normalized ranges.
Protobuf typegoogle.type.LatLng
LatLngProto
LocalizedText
Localized variant of a text in a particular language.
Protobuf typegoogle.type.LocalizedText
LocalizedText.Builder
Localized variant of a text in a particular language.
Protobuf typegoogle.type.LocalizedText
LocalizedTextProto
Money
Represents an amount of money with its currency type.
Protobuf typegoogle.type.Money
Money.Builder
Represents an amount of money with its currency type.
Protobuf typegoogle.type.Money
MoneyProto
MonthProto
PhoneNumber
An object representing a phone number, suitable as an API wire format. This representation:
- should not be used for locale-specific formatting of a phone number, suchas "+1 (650) 253-0000 ext. 123"
- is not designed for efficient storage
- may not be suitable for dialing - specialized libraries (see references)should be used to parse the number for that purposeTo do something meaningful with this number, such as format it for varioususe-cases, convert it to an
i18n.phonenumbers.PhoneNumberobject first.For instance, in Java this would be:com.google.type.PhoneNumber wireProto = com.google.type.PhoneNumber.newBuilder().build();com.google.i18n.phonenumbers.Phonenumber.PhoneNumber phoneNumber = PhoneNumberUtil.getInstance().parse(wireProto.getE164Number(), "ZZ");if (!wireProto.getExtension().isEmpty()) { phoneNumber.setExtension(wireProto.getExtension());}Reference(s):
Protobuf typegoogle.type.PhoneNumber
PhoneNumber.Builder
An object representing a phone number, suitable as an API wire format. This representation:
- should not be used for locale-specific formatting of a phone number, suchas "+1 (650) 253-0000 ext. 123"
- is not designed for efficient storage
- may not be suitable for dialing - specialized libraries (see references)should be used to parse the number for that purposeTo do something meaningful with this number, such as format it for varioususe-cases, convert it to an
i18n.phonenumbers.PhoneNumberobject first.For instance, in Java this would be:com.google.type.PhoneNumber wireProto = com.google.type.PhoneNumber.newBuilder().build();com.google.i18n.phonenumbers.Phonenumber.PhoneNumber phoneNumber = PhoneNumberUtil.getInstance().parse(wireProto.getE164Number(), "ZZ");if (!wireProto.getExtension().isEmpty()) { phoneNumber.setExtension(wireProto.getExtension());}Reference(s):
Protobuf typegoogle.type.PhoneNumber
PhoneNumber.ShortCode
An object representing a short code, which is a phone number that is typically much shorter than regular phone numbers and can be used to address messages in MMS and SMS systems, as well as for abbreviated dialing (e.g. "Text 611 to see how many minutes you have remaining on your plan."). Short codes are restricted to a region and are not internationally dialable, which means the same short code can exist in different regions, with different usage and pricing, even if those regions share the same country calling code (e.g. US and CA).
Protobuf typegoogle.type.PhoneNumber.ShortCode
PhoneNumber.ShortCode.Builder
An object representing a short code, which is a phone number that is typically much shorter than regular phone numbers and can be used to address messages in MMS and SMS systems, as well as for abbreviated dialing (e.g. "Text 611 to see how many minutes you have remaining on your plan."). Short codes are restricted to a region and are not internationally dialable, which means the same short code can exist in different regions, with different usage and pricing, even if those regions share the same country calling code (e.g. US and CA).
Protobuf typegoogle.type.PhoneNumber.ShortCode
PhoneNumberProto
PostalAddress
Represents a postal address, e.g. for postal delivery or payments addresses. Given a postal address, a postal service can deliver items to a premise, P.O. Box or similar. It is not intended to model geographical locations (roads, towns, mountains). In typical usage an address would be created via user input or from importing existing data, depending on the type of process. Advice on address input / editing:
- Use an i18n-ready address widget such ashttps://github.com/google/libaddressinput)
- Users should not be presented with UI elements for input or editing offields outside countries where that field is used.For more guidance on how to use this schema, please see:https://support.google.com/business/answer/6397478
Protobuf typegoogle.type.PostalAddress
PostalAddress.Builder
Represents a postal address, e.g. for postal delivery or payments addresses. Given a postal address, a postal service can deliver items to a premise, P.O. Box or similar. It is not intended to model geographical locations (roads, towns, mountains). In typical usage an address would be created via user input or from importing existing data, depending on the type of process. Advice on address input / editing:
- Use an i18n-ready address widget such ashttps://github.com/google/libaddressinput)
- Users should not be presented with UI elements for input or editing offields outside countries where that field is used.For more guidance on how to use this schema, please see:https://support.google.com/business/answer/6397478
Protobuf typegoogle.type.PostalAddress
PostalAddressProto
Quaternion
A quaternion is defined as the quotient of two directed lines in a three-dimensional space or equivalently as the quotient of two Euclidean vectors (https://en.wikipedia.org/wiki/Quaternion). Quaternions are often used in calculations involving three-dimensional rotations (https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation), as they provide greater mathematical robustness by avoiding the gimbal lock problems that can be encountered when using Euler angles (https://en.wikipedia.org/wiki/Gimbal_lock). Quaternions are generally represented in this form: w + xi + yj + zk where x, y, z, and w are real numbers, and i, j, and k are three imaginary numbers. Our naming choice(x, y, z, w) comes from the desire to avoid confusion for those interested in the geometric properties of the quaternion in the 3D Cartesian space. Other texts often use alternative names or subscripts, such as(a, b, c, d),(1, i, j, k), or(0, 1, 2, 3), which are perhaps better suited for mathematical interpretations. To avoid any confusion, as well as to maintain compatibility with a large number of software libraries, the quaternions represented using the protocol buffer belowmust follow the Hamilton convention, which definesij = k (i.e. a right-handed algebra), and therefore: i^2 = j^2 = k^2 = ijk = \u22121 ij = \u2212ji = k jk = \u2212kj = i ki = \u2212ik = j Please DO NOT use this to represent quaternions that follow the JPL convention, or any of the other quaternion flavors out there. Definitions:
- Quaternion norm (or magnitude):
sqrt(x^2 + y^2 + z^2 + w^2). - Unit (or normalized) quaternion: a quaternion whose norm is 1.
- Pure quaternion: a quaternion whose scalar component (
w) is 0. - Rotation quaternion: a unit quaternion used to represent rotation.
- Orientation quaternion: a unit quaternion used to represent orientation.A quaternion can be normalized by dividing it by its norm. The resultingquaternion maintains the same direction, but has a norm of 1, i.e. it moveson the unit sphere. This is generally necessary for rotation and orientationquaternions, to avoid rounding errors:https://en.wikipedia.org/wiki/Rotation_formalisms_in_three_dimensionsNote that
(x, y, z, w)and(-x, -y, -z, -w)represent the same rotation,but normalization would be even more useful, e.g. for comparison purposes, ifit would produce a unique representation. It is thus recommended thatwbekept positive, which can be achieved by changing all the signs whenwisnegative.
Protobuf typegoogle.type.Quaternion
Quaternion.Builder
A quaternion is defined as the quotient of two directed lines in a three-dimensional space or equivalently as the quotient of two Euclidean vectors (https://en.wikipedia.org/wiki/Quaternion). Quaternions are often used in calculations involving three-dimensional rotations (https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation), as they provide greater mathematical robustness by avoiding the gimbal lock problems that can be encountered when using Euler angles (https://en.wikipedia.org/wiki/Gimbal_lock). Quaternions are generally represented in this form: w + xi + yj + zk where x, y, z, and w are real numbers, and i, j, and k are three imaginary numbers. Our naming choice(x, y, z, w) comes from the desire to avoid confusion for those interested in the geometric properties of the quaternion in the 3D Cartesian space. Other texts often use alternative names or subscripts, such as(a, b, c, d),(1, i, j, k), or(0, 1, 2, 3), which are perhaps better suited for mathematical interpretations. To avoid any confusion, as well as to maintain compatibility with a large number of software libraries, the quaternions represented using the protocol buffer belowmust follow the Hamilton convention, which definesij = k (i.e. a right-handed algebra), and therefore: i^2 = j^2 = k^2 = ijk = \u22121 ij = \u2212ji = k jk = \u2212kj = i ki = \u2212ik = j Please DO NOT use this to represent quaternions that follow the JPL convention, or any of the other quaternion flavors out there. Definitions:
- Quaternion norm (or magnitude):
sqrt(x^2 + y^2 + z^2 + w^2). - Unit (or normalized) quaternion: a quaternion whose norm is 1.
- Pure quaternion: a quaternion whose scalar component (
w) is 0. - Rotation quaternion: a unit quaternion used to represent rotation.
- Orientation quaternion: a unit quaternion used to represent orientation.A quaternion can be normalized by dividing it by its norm. The resultingquaternion maintains the same direction, but has a norm of 1, i.e. it moveson the unit sphere. This is generally necessary for rotation and orientationquaternions, to avoid rounding errors:https://en.wikipedia.org/wiki/Rotation_formalisms_in_three_dimensionsNote that
(x, y, z, w)and(-x, -y, -z, -w)represent the same rotation,but normalization would be even more useful, e.g. for comparison purposes, ifit would produce a unique representation. It is thus recommended thatwbekept positive, which can be achieved by changing all the signs whenwisnegative.
Protobuf typegoogle.type.Quaternion
QuaternionProto
TimeOfDay
Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types aregoogle.type.Date andgoogle.protobuf.Timestamp.
Protobuf typegoogle.type.TimeOfDay
TimeOfDay.Builder
Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types aregoogle.type.Date andgoogle.protobuf.Timestamp.
Protobuf typegoogle.type.TimeOfDay
TimeOfDayProto
TimeZone
Represents a time zone from theIANA Time Zone Database.
Protobuf typegoogle.type.TimeZone
TimeZone.Builder
Represents a time zone from theIANA Time Zone Database.
Protobuf typegoogle.type.TimeZone
Interfaces
ColorOrBuilder
DateOrBuilder
DateTimeOrBuilder
DecimalOrBuilder
ExprOrBuilder
FractionOrBuilder
IntervalOrBuilder
LatLngOrBuilder
LocalizedTextOrBuilder
MoneyOrBuilder
PhoneNumber.ShortCodeOrBuilder
PhoneNumberOrBuilder
PostalAddressOrBuilder
QuaternionOrBuilder
TimeOfDayOrBuilder
TimeZoneOrBuilder
Enums
CalendarPeriod
ACalendarPeriod represents the abstract concept of a time period that has a canonical start. Grammatically, "the start of the currentCalendarPeriod." All calendar times begin at midnight UTC.
Protobuf enumgoogle.type.CalendarPeriod
DateTime.TimeOffsetCase
DayOfWeek
Represents a day of the week.
Protobuf enumgoogle.type.DayOfWeek
Month
Represents a month in the Gregorian calendar.
Protobuf enumgoogle.type.Month
PhoneNumber.KindCase
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-01-31 UTC.