Class BlobName.Builder
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.blob.BlobName.Builder
-
-
Constructor Summary
Constructors Constructor Description Builder()Public default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BlobNamebuild()Build a BlobName from the current state of this BuilderBlobName.BuilderlogicalId(java.lang.String id)Set the logicalIdBlobName.BuilderresourcePayloadKey(java.lang.String key)Set the resourcePayloadKey valueBlobName.BuilderresourceTypeId(int id)Set the resource type id and lookup the resource type nameBlobName.BuilderresourceTypeName(java.lang.String value)Set the resource type name and lookup the resource type idBlobName.Builderversion(int version)Set the version
-
-
-
Method Detail
-
resourceTypeName
public BlobName.Builder resourceTypeName(java.lang.String value)
Set the resource type name and lookup the resource type id- Parameters:
value-- Returns:
- this instance of Builder
-
resourceTypeId
public BlobName.Builder resourceTypeId(int id)
Set the resource type id and lookup the resource type name- Parameters:
id-- Returns:
- this instance of Builder
-
logicalId
public BlobName.Builder logicalId(java.lang.String id)
Set the logicalId- Parameters:
id-- Returns:
- this instance of Builder
-
version
public BlobName.Builder version(int version)
Set the version- Parameters:
version-- Returns:
- this instance of Builder
-
resourcePayloadKey
public BlobName.Builder resourcePayloadKey(java.lang.String key)
Set the resourcePayloadKey value- Parameters:
key-- Returns:
- this instance of Builder
-
build
public BlobName build()
Build a BlobName from the current state of this Builder- Returns:
-
-