public static final class PhoneNumber.Builder extends GeneratedMessageV3.Builder<PhoneNumber.Builder> implements PhoneNumberOrBuilder
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, such as "+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 purpose
To do something meaningful with this number, such as format it for various use-cases, convert it to an
i18n.phonenumbers.PhoneNumber
object 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 type google.type.PhoneNumber
Inheritance
Object > AbstractMessageLite.Builder<MessageType,BuilderType> > AbstractMessage.Builder<BuilderType> > GeneratedMessageV3.Builder > PhoneNumber.BuilderImplements
PhoneNumberOrBuilderStatic Methods
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns | |
---|---|
Type | Description |
Descriptor |
Methods
addRepeatedField(Descriptors.FieldDescriptor field, Object value)
public PhoneNumber.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters | |
---|---|
Name | Description |
field | FieldDescriptor |
value | Object |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
build()
public PhoneNumber build()
Returns | |
---|---|
Type | Description |
PhoneNumber |
buildPartial()
public PhoneNumber buildPartial()
Returns | |
---|---|
Type | Description |
PhoneNumber |
clear()
public PhoneNumber.Builder clear()
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
clearE164Number()
public PhoneNumber.Builder clearE164Number()
The phone number, represented as a leading plus sign ('+'), followed by a phone number that uses a relaxed ITU E.164 format consisting of the country calling code (1 to 3 digits) and the subscriber number, with no additional spaces or formatting, e.g.:
- correct: "+15552220123"
incorrect: "+1 (555) 222-01234 x123".
The ITU E.164 format limits the latter to 12 digits, but in practice not all countries respect that, so we relax that restriction here. National-only numbers are not allowed.
References:
- https://www.itu.int/rec/T-REC-E.164-201011-I
- https://en.wikipedia.org/wiki/E.164.
- https://en.wikipedia.org/wiki/List_of_country_calling_codes
string e164_number = 1;
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder | This builder for chaining. |
clearExtension()
public PhoneNumber.Builder clearExtension()
The phone number's extension. The extension is not standardized in ITU recommendations, except for being defined as a series of numbers with a maximum length of 40 digits. Other than digits, some other dialing characters such as ',' (indicating a wait) or '#' may be stored here.
Note that no regions currently use extensions with short codes, so this field is normally only set in conjunction with an E.164 number. It is held separately from the E.164 number to allow for short code extensions in the future.
string extension = 3;
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder | This builder for chaining. |
clearField(Descriptors.FieldDescriptor field)
public PhoneNumber.Builder clearField(Descriptors.FieldDescriptor field)
Parameter | |
---|---|
Name | Description |
field | FieldDescriptor |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
clearKind()
public PhoneNumber.Builder clearKind()
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
clearOneof(Descriptors.OneofDescriptor oneof)
public PhoneNumber.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter | |
---|---|
Name | Description |
oneof | OneofDescriptor |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
clearShortCode()
public PhoneNumber.Builder clearShortCode()
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
clone()
public PhoneNumber.Builder clone()
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
getDefaultInstanceForType()
public PhoneNumber getDefaultInstanceForType()
Returns | |
---|---|
Type | Description |
PhoneNumber |
getDescriptorForType()
public Descriptors.Descriptor getDescriptorForType()
Returns | |
---|---|
Type | Description |
Descriptor |
getE164Number()
public String getE164Number()
The phone number, represented as a leading plus sign ('+'), followed by a phone number that uses a relaxed ITU E.164 format consisting of the country calling code (1 to 3 digits) and the subscriber number, with no additional spaces or formatting, e.g.:
- correct: "+15552220123"
incorrect: "+1 (555) 222-01234 x123".
The ITU E.164 format limits the latter to 12 digits, but in practice not all countries respect that, so we relax that restriction here. National-only numbers are not allowed.
References:
- https://www.itu.int/rec/T-REC-E.164-201011-I
- https://en.wikipedia.org/wiki/E.164.
- https://en.wikipedia.org/wiki/List_of_country_calling_codes
string e164_number = 1;
Returns | |
---|---|
Type | Description |
String | The e164Number. |
getE164NumberBytes()
public ByteString getE164NumberBytes()
The phone number, represented as a leading plus sign ('+'), followed by a phone number that uses a relaxed ITU E.164 format consisting of the country calling code (1 to 3 digits) and the subscriber number, with no additional spaces or formatting, e.g.:
- correct: "+15552220123"
incorrect: "+1 (555) 222-01234 x123".
The ITU E.164 format limits the latter to 12 digits, but in practice not all countries respect that, so we relax that restriction here. National-only numbers are not allowed.
References:
- https://www.itu.int/rec/T-REC-E.164-201011-I
- https://en.wikipedia.org/wiki/E.164.
- https://en.wikipedia.org/wiki/List_of_country_calling_codes
string e164_number = 1;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for e164Number. |
getExtension()
public String getExtension()
The phone number's extension. The extension is not standardized in ITU recommendations, except for being defined as a series of numbers with a maximum length of 40 digits. Other than digits, some other dialing characters such as ',' (indicating a wait) or '#' may be stored here.
Note that no regions currently use extensions with short codes, so this field is normally only set in conjunction with an E.164 number. It is held separately from the E.164 number to allow for short code extensions in the future.
string extension = 3;
Returns | |
---|---|
Type | Description |
String | The extension. |
getExtensionBytes()
public ByteString getExtensionBytes()
The phone number's extension. The extension is not standardized in ITU recommendations, except for being defined as a series of numbers with a maximum length of 40 digits. Other than digits, some other dialing characters such as ',' (indicating a wait) or '#' may be stored here.
Note that no regions currently use extensions with short codes, so this field is normally only set in conjunction with an E.164 number. It is held separately from the E.164 number to allow for short code extensions in the future.
string extension = 3;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for extension. |
getKindCase()
public PhoneNumber.KindCase getKindCase()
Returns | |
---|---|
Type | Description |
PhoneNumber.KindCase |
getShortCode()
public PhoneNumber.ShortCode getShortCode()
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Returns | |
---|---|
Type | Description |
PhoneNumber.ShortCode | The shortCode. |
getShortCodeBuilder()
public PhoneNumber.ShortCode.Builder getShortCodeBuilder()
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Returns | |
---|---|
Type | Description |
PhoneNumber.ShortCode.Builder |
getShortCodeOrBuilder()
public PhoneNumber.ShortCodeOrBuilder getShortCodeOrBuilder()
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Returns | |
---|---|
Type | Description |
PhoneNumber.ShortCodeOrBuilder |
hasE164Number()
public boolean hasE164Number()
The phone number, represented as a leading plus sign ('+'), followed by a phone number that uses a relaxed ITU E.164 format consisting of the country calling code (1 to 3 digits) and the subscriber number, with no additional spaces or formatting, e.g.:
- correct: "+15552220123"
incorrect: "+1 (555) 222-01234 x123".
The ITU E.164 format limits the latter to 12 digits, but in practice not all countries respect that, so we relax that restriction here. National-only numbers are not allowed.
References:
- https://www.itu.int/rec/T-REC-E.164-201011-I
- https://en.wikipedia.org/wiki/E.164.
- https://en.wikipedia.org/wiki/List_of_country_calling_codes
string e164_number = 1;
Returns | |
---|---|
Type | Description |
boolean | Whether the e164Number field is set. |
hasShortCode()
public boolean hasShortCode()
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Returns | |
---|---|
Type | Description |
boolean | Whether the shortCode field is set. |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns | |
---|---|
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Returns | |
---|---|
Type | Description |
boolean |
mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public PhoneNumber.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
Exceptions | |
---|---|
Type | Description |
IOException |
mergeFrom(Message other)
public PhoneNumber.Builder mergeFrom(Message other)
Parameter | |
---|---|
Name | Description |
other | Message |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
mergeFrom(PhoneNumber other)
public PhoneNumber.Builder mergeFrom(PhoneNumber other)
Parameter | |
---|---|
Name | Description |
other | PhoneNumber |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
mergeShortCode(PhoneNumber.ShortCode value)
public PhoneNumber.Builder mergeShortCode(PhoneNumber.ShortCode value)
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Parameter | |
---|---|
Name | Description |
value | PhoneNumber.ShortCode |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
mergeUnknownFields(UnknownFieldSet unknownFields)
public final PhoneNumber.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter | |
---|---|
Name | Description |
unknownFields | UnknownFieldSet |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
setE164Number(String value)
public PhoneNumber.Builder setE164Number(String value)
The phone number, represented as a leading plus sign ('+'), followed by a phone number that uses a relaxed ITU E.164 format consisting of the country calling code (1 to 3 digits) and the subscriber number, with no additional spaces or formatting, e.g.:
- correct: "+15552220123"
incorrect: "+1 (555) 222-01234 x123".
The ITU E.164 format limits the latter to 12 digits, but in practice not all countries respect that, so we relax that restriction here. National-only numbers are not allowed.
References:
- https://www.itu.int/rec/T-REC-E.164-201011-I
- https://en.wikipedia.org/wiki/E.164.
- https://en.wikipedia.org/wiki/List_of_country_calling_codes
string e164_number = 1;
Parameter | |
---|---|
Name | Description |
value | String The e164Number to set. |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder | This builder for chaining. |
setE164NumberBytes(ByteString value)
public PhoneNumber.Builder setE164NumberBytes(ByteString value)
The phone number, represented as a leading plus sign ('+'), followed by a phone number that uses a relaxed ITU E.164 format consisting of the country calling code (1 to 3 digits) and the subscriber number, with no additional spaces or formatting, e.g.:
- correct: "+15552220123"
incorrect: "+1 (555) 222-01234 x123".
The ITU E.164 format limits the latter to 12 digits, but in practice not all countries respect that, so we relax that restriction here. National-only numbers are not allowed.
References:
- https://www.itu.int/rec/T-REC-E.164-201011-I
- https://en.wikipedia.org/wiki/E.164.
- https://en.wikipedia.org/wiki/List_of_country_calling_codes
string e164_number = 1;
Parameter | |
---|---|
Name | Description |
value | ByteString The bytes for e164Number to set. |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder | This builder for chaining. |
setExtension(String value)
public PhoneNumber.Builder setExtension(String value)
The phone number's extension. The extension is not standardized in ITU recommendations, except for being defined as a series of numbers with a maximum length of 40 digits. Other than digits, some other dialing characters such as ',' (indicating a wait) or '#' may be stored here.
Note that no regions currently use extensions with short codes, so this field is normally only set in conjunction with an E.164 number. It is held separately from the E.164 number to allow for short code extensions in the future.
string extension = 3;
Parameter | |
---|---|
Name | Description |
value | String The extension to set. |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder | This builder for chaining. |
setExtensionBytes(ByteString value)
public PhoneNumber.Builder setExtensionBytes(ByteString value)
The phone number's extension. The extension is not standardized in ITU recommendations, except for being defined as a series of numbers with a maximum length of 40 digits. Other than digits, some other dialing characters such as ',' (indicating a wait) or '#' may be stored here.
Note that no regions currently use extensions with short codes, so this field is normally only set in conjunction with an E.164 number. It is held separately from the E.164 number to allow for short code extensions in the future.
string extension = 3;
Parameter | |
---|---|
Name | Description |
value | ByteString The bytes for extension to set. |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder | This builder for chaining. |
setField(Descriptors.FieldDescriptor field, Object value)
public PhoneNumber.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters | |
---|---|
Name | Description |
field | FieldDescriptor |
value | Object |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
public PhoneNumber.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters | |
---|---|
Name | Description |
field | FieldDescriptor |
index | int |
value | Object |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
setShortCode(PhoneNumber.ShortCode value)
public PhoneNumber.Builder setShortCode(PhoneNumber.ShortCode value)
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Parameter | |
---|---|
Name | Description |
value | PhoneNumber.ShortCode |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
setShortCode(PhoneNumber.ShortCode.Builder builderForValue)
public PhoneNumber.Builder setShortCode(PhoneNumber.ShortCode.Builder builderForValue)
A short code.
Reference(s):
.google.type.PhoneNumber.ShortCode short_code = 2;
Parameter | |
---|---|
Name | Description |
builderForValue | PhoneNumber.ShortCode.Builder |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |
setUnknownFields(UnknownFieldSet unknownFields)
public final PhoneNumber.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter | |
---|---|
Name | Description |
unknownFields | UnknownFieldSet |
Returns | |
---|---|
Type | Description |
PhoneNumber.Builder |