Interface CandidateAddress.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CandidateAddress.Builder,CandidateAddress>,SdkBuilder<CandidateAddress.Builder,CandidateAddress>,SdkPojo
- Enclosing class:
- CandidateAddress
public static interface CandidateAddress.Builder extends SdkPojo, CopyableBuilder<CandidateAddress.Builder,CandidateAddress>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CandidateAddress.Buildercity(String city)The city of a candidate address.CandidateAddress.Buildercountry(String country)The country of a candidate address.CandidateAddress.BuilderpostalCode(String postalCode)The postal code of a candidate address.CandidateAddress.BuilderpostalCodePlus4(String postalCodePlus4)The Zip + 4 or postal code + 4 of a candidate address.CandidateAddress.Builderstate(String state)The state of a candidate address.CandidateAddress.BuilderstreetInfo(String streetInfo)The street information of a candidate addressCandidateAddress.BuilderstreetNumber(String streetNumber)The numeric portion of a candidate address.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
streetInfo
CandidateAddress.Builder streetInfo(String streetInfo)
The street information of a candidate address
- Parameters:
streetInfo- The street information of a candidate address- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streetNumber
CandidateAddress.Builder streetNumber(String streetNumber)
The numeric portion of a candidate address.
- Parameters:
streetNumber- The numeric portion of a candidate address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
city
CandidateAddress.Builder city(String city)
The city of a candidate address.
- Parameters:
city- The city of a candidate address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
CandidateAddress.Builder state(String state)
The state of a candidate address.
- Parameters:
state- The state of a candidate address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postalCode
CandidateAddress.Builder postalCode(String postalCode)
The postal code of a candidate address.
- Parameters:
postalCode- The postal code of a candidate address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postalCodePlus4
CandidateAddress.Builder postalCodePlus4(String postalCodePlus4)
The Zip + 4 or postal code + 4 of a candidate address.
- Parameters:
postalCodePlus4- The Zip + 4 or postal code + 4 of a candidate address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
country
CandidateAddress.Builder country(String country)
The country of a candidate address.
- Parameters:
country- The country of a candidate address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-