public interface DocumentFieldCollectionResponse
DocumentField
collection.Modifier and Type | Method and Description |
---|---|
boolean |
containsField(String fieldName)
Given the field name, checks to see if an
DocumentField exists with the name. |
DocumentField |
getField(String fieldName)
Given the field name, obtains the
DocumentField . |
int |
getFieldCount()
Retrieves the number of entries in the collection.
|
Stream<DocumentField> |
streamFields()
Streams the document fields in the native format,
DocumentField . |
DocumentField getField(String fieldName)
DocumentField
. This value is never null.fieldName
- name of the field. Cannot be null or empty. Field must exist. For example, name__v.DocumentField
boolean containsField(String fieldName)
DocumentField
exists with the name.fieldName
- name of field. Cannot be null or empty. For example, name__v.DocumentField
exists with the given field name, otherwise falseint getFieldCount()
Stream<DocumentField> streamFields()
DocumentField
.
To traverse the stream results in the classic iterator model, use the retrieved stream's BaseStream.iterator()
method.
DocumentField
in this collectionCopyright © Veeva Systems 2017–2022. All rights reserved.