Uses of Class
com.attivio.sdk.ingest.IngestFieldValue
-
Packages that use IngestFieldValue Package Description com.attivio.client.streaming Contains client code for streaming search results.com.attivio.sdk.ingest com.attivio.sdk.server.component.ingest Interfaces for all ingest related transformers and associated dependencies of those transformers.com.attivio.sdk.test com.attivio.sdk.util com.attivio.util Contains utility classes and methods used across the Attivio code base. -
-
Uses of IngestFieldValue in com.attivio.client.streaming
Methods in com.attivio.client.streaming that return IngestFieldValue Modifier and Type Method Description protected IngestFieldValue
DocumentSerializer. readValue(java.io.DataInputStream in)
-
Uses of IngestFieldValue in com.attivio.sdk.ingest
Methods in com.attivio.sdk.ingest that return IngestFieldValue Modifier and Type Method Description IngestFieldValue
IngestFieldValue. clone()
IngestFieldValue
IngestDocument. getFirstValue(java.lang.String field)
Get the firstIngestFieldValue
forfield
or null if the field does not exist.IngestFieldValue
IngestField. getFirstValue()
Gets the first field value.IngestFieldValue
IngestField. getValue(int index)
Get theIngestFieldValue
atindex
.static IngestFieldValue
IngestFieldValue. valueOf(java.lang.Object value)
Get anIngestFieldValue
forvalue
.Methods in com.attivio.sdk.ingest that return types with arguments of type IngestFieldValue Modifier and Type Method Description java.util.ListIterator<IngestFieldValue>
IngestField. iterator()
Get an iterator for iterating over allvalues
.Methods in com.attivio.sdk.ingest with parameters of type IngestFieldValue Modifier and Type Method Description void
IngestField. accept(IngestFieldValue value)
void
IngestDocument. addValue(java.lang.String field, IngestFieldValue value)
Add avalue
tofield
.void
IngestField. addValue(IngestFieldValue value)
Add avalue
to thisIngestField
.Method parameters in com.attivio.sdk.ingest with type arguments of type IngestFieldValue Modifier and Type Method Description int
IngestField. filter(java.util.function.Predicate<? super IngestFieldValue> predicate)
Filter out all values that do not matchpredicate
.void
IngestField. forEach(java.util.function.Consumer<? super IngestFieldValue> consumer)
-
Uses of IngestFieldValue in com.attivio.sdk.server.component.ingest
Methods in com.attivio.sdk.server.component.ingest that return IngestFieldValue Modifier and Type Method Description IngestFieldValue
FieldValueCreatingTransformer. createMappedValue(java.lang.String inputFieldName, IngestFieldValue inputFieldValue)
Process a singleIngestFieldValue
and return a new value to be placed into the document for this input->output mapping.Methods in com.attivio.sdk.server.component.ingest with parameters of type IngestFieldValue Modifier and Type Method Description IngestFieldValue
FieldValueCreatingTransformer. createMappedValue(java.lang.String inputFieldName, IngestFieldValue inputFieldValue)
Process a singleIngestFieldValue
and return a new value to be placed into the document for this input->output mapping.boolean
FieldValueModifyingTransformer. modifyFieldValue(java.lang.String fieldName, IngestFieldValue fv)
Process a single field value and modify it in place. -
Uses of IngestFieldValue in com.attivio.sdk.test
Methods in com.attivio.sdk.test that return IngestFieldValue Modifier and Type Method Description static IngestFieldValue
DocumentAssert. assertSingleValue(IngestDocument doc, java.lang.String field)
static IngestFieldValue
DocumentAssert. assertSingleValue(IngestField f)
static IngestFieldValue
DocumentAssert. assertSingleValueOrNull(IngestDocument doc, java.lang.String field)
static IngestFieldValue
DocumentAssert. assertSingleValueOrNull(IngestField f)
Methods in com.attivio.sdk.test with parameters of type IngestFieldValue Modifier and Type Method Description static java.util.List<java.lang.String>
DocumentAssert. assertScopes(java.lang.String scope, IngestFieldValue value, java.lang.String... expected)
-
Uses of IngestFieldValue in com.attivio.sdk.util
Methods in com.attivio.sdk.util that return IngestFieldValue Modifier and Type Method Description IngestFieldValue
AdvancedFieldValueMapper. createMappedValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
Process a single field value and returns the new value.IngestFieldValue
AdvancedFieldValueMapperWrapper. createMappedValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
IngestFieldValue
FieldValueMapper. createMappedValue(java.lang.String fieldName, IngestFieldValue fv)
Process a singleIngestFieldValue
and return a new value to be placed into the document for this input->output mapping.Methods in com.attivio.sdk.util with parameters of type IngestFieldValue Modifier and Type Method Description IngestFieldValue
AdvancedFieldValueMapper. createMappedValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
Process a single field value and returns the new value.IngestFieldValue
AdvancedFieldValueMapperWrapper. createMappedValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
IngestFieldValue
FieldValueMapper. createMappedValue(java.lang.String fieldName, IngestFieldValue fv)
Process a singleIngestFieldValue
and return a new value to be placed into the document for this input->output mapping.void
AdvancedFieldValueModifier. modifyFieldValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
Modify a single field value in place.void
FieldValueModifier. modifyFieldValue(java.lang.String fieldName, IngestFieldValue fv)
Process a single field value and modify it in place. -
Uses of IngestFieldValue in com.attivio.util
Methods in com.attivio.util with parameters of type IngestFieldValue Modifier and Type Method Description static java.util.List<java.lang.String>
TokenUtils. extractScopes(java.lang.String scopeName, IngestFieldValue value)
ExtractscopeName
values fromvalue
.static TokenList
TokenUtils. filterTokens(IngestFieldValue value, java.util.Locale locale)
Get all tokens forlocale
.
-