Interface ContractIdentifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ContractIdentifier.Builder,ContractIdentifier>,SdkBuilder<ContractIdentifier.Builder,ContractIdentifier>,SdkPojo
- Enclosing class:
- ContractIdentifier
public static interface ContractIdentifier.Builder extends SdkPojo, CopyableBuilder<ContractIdentifier.Builder,ContractIdentifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContractIdentifier.BuildercontractAddress(String contractAddress)Container for the blockchain address about a contract.ContractIdentifier.Buildernetwork(String network)The blockchain network of the contract.ContractIdentifier.Buildernetwork(QueryNetwork network)The blockchain network of the contract.-
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, sdkFields
-
-
-
-
Method Detail
-
network
ContractIdentifier.Builder network(String network)
The blockchain network of the contract.
- Parameters:
network- The blockchain network of the contract.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryNetwork,QueryNetwork
-
network
ContractIdentifier.Builder network(QueryNetwork network)
The blockchain network of the contract.
- Parameters:
network- The blockchain network of the contract.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryNetwork,QueryNetwork
-
contractAddress
ContractIdentifier.Builder contractAddress(String contractAddress)
Container for the blockchain address about a contract.
- Parameters:
contractAddress- Container for the blockchain address about a contract.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-