Class PhoneNumber.Builder (2.65.0)

public static final class PhoneNumber.Builder extends GeneratedMessage.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):

  • https://github.com/google/libphonenumber

Protobuf type google.type.PhoneNumber

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

Methods

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
Overrides

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.:

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.

clearKind()

public PhoneNumber.Builder clearKind()
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

getDefaultInstanceForType()

public PhoneNumber getDefaultInstanceForType()
Returns
Type Description
PhoneNumber

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
Type Description
Descriptor
Overrides

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.:

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.:

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.:

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 GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

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
Overrides
Exceptions
Type Description
IOException

mergeFrom(Message other)

public PhoneNumber.Builder mergeFrom(Message other)
Parameter
Name Description
other Message
Returns
Type Description
PhoneNumber.Builder
Overrides

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

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.:

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.:

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.

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