Interface TransactionData.AddressOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TransactionData.Address,TransactionData.Address.Builder
- Enclosing class:
- TransactionData
public static interface TransactionData.AddressOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAddress(int index)The first lines of the address.com.google.protobuf.ByteStringgetAddressBytes(int index)The first lines of the address.intgetAddressCount()The first lines of the address.List<String>getAddressList()The first lines of the address.StringgetAdministrativeArea()The state, province, or otherwise administrative area of the address.com.google.protobuf.ByteStringgetAdministrativeAreaBytes()The state, province, or otherwise administrative area of the address.StringgetLocality()The town/city of the address.com.google.protobuf.ByteStringgetLocalityBytes()The town/city of the address.StringgetPostalCode()The postal or ZIP code of the address.com.google.protobuf.ByteStringgetPostalCodeBytes()The postal or ZIP code of the address.StringgetRecipient()The recipient name, potentially including information such as "care of".com.google.protobuf.ByteStringgetRecipientBytes()The recipient name, potentially including information such as "care of".StringgetRegionCode()The CLDR country/region of the address.com.google.protobuf.ByteStringgetRegionCodeBytes()The CLDR country/region of the address.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRecipient
String getRecipient()
The recipient name, potentially including information such as "care of".
string recipient = 1;- Returns:
- The recipient.
-
getRecipientBytes
com.google.protobuf.ByteString getRecipientBytes()
The recipient name, potentially including information such as "care of".
string recipient = 1;- Returns:
- The bytes for recipient.
-
getAddressList
List<String> getAddressList()
The first lines of the address. The first line generally contains the street name and number, and further lines may include information such as an apartment number.
repeated string address = 2;- Returns:
- A list containing the address.
-
getAddressCount
int getAddressCount()
The first lines of the address. The first line generally contains the street name and number, and further lines may include information such as an apartment number.
repeated string address = 2;- Returns:
- The count of address.
-
getAddress
String getAddress(int index)
The first lines of the address. The first line generally contains the street name and number, and further lines may include information such as an apartment number.
repeated string address = 2;- Parameters:
index- The index of the element to return.- Returns:
- The address at the given index.
-
getAddressBytes
com.google.protobuf.ByteString getAddressBytes(int index)
The first lines of the address. The first line generally contains the street name and number, and further lines may include information such as an apartment number.
repeated string address = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the address at the given index.
-
getLocality
String getLocality()
The town/city of the address.
string locality = 3;- Returns:
- The locality.
-
getLocalityBytes
com.google.protobuf.ByteString getLocalityBytes()
The town/city of the address.
string locality = 3;- Returns:
- The bytes for locality.
-
getAdministrativeArea
String getAdministrativeArea()
The state, province, or otherwise administrative area of the address.
string administrative_area = 4;- Returns:
- The administrativeArea.
-
getAdministrativeAreaBytes
com.google.protobuf.ByteString getAdministrativeAreaBytes()
The state, province, or otherwise administrative area of the address.
string administrative_area = 4;- Returns:
- The bytes for administrativeArea.
-
getRegionCode
String getRegionCode()
The CLDR country/region of the address.
string region_code = 5;- Returns:
- The regionCode.
-
getRegionCodeBytes
com.google.protobuf.ByteString getRegionCodeBytes()
The CLDR country/region of the address.
string region_code = 5;- Returns:
- The bytes for regionCode.
-
getPostalCode
String getPostalCode()
The postal or ZIP code of the address.
string postal_code = 6;- Returns:
- The postalCode.
-
getPostalCodeBytes
com.google.protobuf.ByteString getPostalCodeBytes()
The postal or ZIP code of the address.
string postal_code = 6;- Returns:
- The bytes for postalCode.
-
-