Interface AddressMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AddressMetadata
,AddressMetadata.Builder
public interface AddressMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getBusiness()
Indicates that this is the address of a business.boolean
getPoBox()
Indicates that the address of a PO box.boolean
getResidential()
Indicates that this is the address of a residence.boolean
hasBusiness()
Indicates that this is the address of a business.boolean
hasPoBox()
Indicates that the address of a PO box.boolean
hasResidential()
Indicates that this is the address of a residence.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasBusiness
boolean hasBusiness()
Indicates that this is the address of a business. If unset, indicates that the value is unknown.
optional bool business = 2;
- Returns:
- Whether the business field is set.
-
getBusiness
boolean getBusiness()
Indicates that this is the address of a business. If unset, indicates that the value is unknown.
optional bool business = 2;
- Returns:
- The business.
-
hasPoBox
boolean hasPoBox()
Indicates that the address of a PO box. If unset, indicates that the value is unknown.
optional bool po_box = 3;
- Returns:
- Whether the poBox field is set.
-
getPoBox
boolean getPoBox()
Indicates that the address of a PO box. If unset, indicates that the value is unknown.
optional bool po_box = 3;
- Returns:
- The poBox.
-
hasResidential
boolean hasResidential()
Indicates that this is the address of a residence. If unset, indicates that the value is unknown.
optional bool residential = 6;
- Returns:
- Whether the residential field is set.
-
getResidential
boolean getResidential()
Indicates that this is the address of a residence. If unset, indicates that the value is unknown.
optional bool residential = 6;
- Returns:
- The residential.
-
-