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