Package com.daml.ledger.api.v1
Interface ValueOuterClass.IdentifierOrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 ValueOuterClass.Identifier,ValueOuterClass.Identifier.Builder
- Enclosing class:
 - ValueOuterClass
 
public static interface ValueOuterClass.IdentifierOrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetEntityName()The dot-separated name of the entity (e.g.com.google.protobuf.ByteStringgetEntityNameBytes()The dot-separated name of the entity (e.g.java.lang.StringgetModuleName()The dot-separated module name of the identifier.com.google.protobuf.ByteStringgetModuleNameBytes()The dot-separated module name of the identifier.java.lang.StringgetPackageId()The identifier of the Daml package that contains the entity.com.google.protobuf.ByteStringgetPackageIdBytes()The identifier of the Daml package that contains the entity.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getPackageId
java.lang.String getPackageId()
The identifier of the Daml package that contains the entity. Must be a valid PackageIdString. Required
string package_id = 1 [json_name = "packageId"];- Returns:
 - The packageId.
 
 
- 
getPackageIdBytes
com.google.protobuf.ByteString getPackageIdBytes()
The identifier of the Daml package that contains the entity. Must be a valid PackageIdString. Required
string package_id = 1 [json_name = "packageId"];- Returns:
 - The bytes for packageId.
 
 
- 
getModuleName
java.lang.String getModuleName()
The dot-separated module name of the identifier. Required
string module_name = 3 [json_name = "moduleName"];- Returns:
 - The moduleName.
 
 
- 
getModuleNameBytes
com.google.protobuf.ByteString getModuleNameBytes()
The dot-separated module name of the identifier. Required
string module_name = 3 [json_name = "moduleName"];- Returns:
 - The bytes for moduleName.
 
 
- 
getEntityName
java.lang.String getEntityName()
The dot-separated name of the entity (e.g. record, template, ...) within the module. Required
string entity_name = 4 [json_name = "entityName"];- Returns:
 - The entityName.
 
 
- 
getEntityNameBytes
com.google.protobuf.ByteString getEntityNameBytes()
The dot-separated name of the entity (e.g. record, template, ...) within the module. Required
string entity_name = 4 [json_name = "entityName"];- Returns:
 - The bytes for entityName.
 
 
 - 
 
 -