Package com.veeva.vault.sdk.api.data
Interface ObjectFieldMetadataCollectionResponse
public interface ObjectFieldMetadataCollectionResponse
Holds an
ObjectFieldMetadata
collection.-
Method Summary
Modifier and TypeMethodDescriptionboolean
containsField
(String fieldName) Given the field name, checks to see if anObjectFieldMetadata
exists with the name.Given the field name, retrieves theObjectFieldMetadata
.Retrieves a collection ofObjectFieldMetadata
.
-
Method Details
-
getField
Given the field name, retrieves theObjectFieldMetadata
.- Parameters:
fieldName
- name of the field. Cannot be null or empty. Field must exist. For example, "name__v".- Returns:
- a
ObjectFieldMetadata
-
containsField
Given the field name, checks to see if anObjectFieldMetadata
exists with the name.- Parameters:
fieldName
- name of field. Cannot be null or empty. For example, "name__v".- Returns:
- true if an
ObjectFieldMetadata
exists with the given field name, otherwise false
-
getFields
List<ObjectFieldMetadata> getFields()Retrieves a collection ofObjectFieldMetadata
.- Returns:
- a collection of
ObjectFieldMetadata
-