Uses of Class
com.attivio.sdk.schema.SchemaField
-
Packages that use SchemaField Package Description com.attivio.sdk.schema Models data from fields and describes how each field should be handled by the Attivio engine.com.attivio.sdk.search.facet Copyright 2019 Attivio Inc., All rights reserved.com.attivio.sdk.server.tokenization Interfaces class that handle breaking free text / Strings intoTokenList
s.com.attivio.util Contains utility classes and methods used across the Attivio code base.com.attivio.util.serialization Contains classes related to serialization/desearialization of objects to/from XML. -
-
Uses of SchemaField in com.attivio.sdk.schema
Methods in com.attivio.sdk.schema that return SchemaField Modifier and Type Method Description SchemaField
Schema. addField(SchemaField field)
Addsfield
to the schema.SchemaField
Schema. addField(java.lang.String fieldName)
Adds a new field by name to the schema.SchemaField
SchemaField. clone()
SchemaField
Schema. getField(java.lang.String fieldName)
Gets a field by name, handling dynamic fields if necessary.Methods in com.attivio.sdk.schema that return types with arguments of type SchemaField Modifier and Type Method Description java.util.Iterator<SchemaField>
Schema. iterator()
Methods in com.attivio.sdk.schema with parameters of type SchemaField Modifier and Type Method Description SchemaField
Schema. addField(SchemaField field)
Addsfield
to the schema. -
Uses of SchemaField in com.attivio.sdk.search.facet
Methods in com.attivio.sdk.search.facet with parameters of type SchemaField Modifier and Type Method Description void
FacetRequest. setDefaults(SchemaField schemaField)
Set default values for unset fields based on a SchemaField. -
Uses of SchemaField in com.attivio.sdk.server.tokenization
Methods in com.attivio.sdk.server.tokenization with parameters of type SchemaField Modifier and Type Method Description default Tokenizer
Tokenizer. getIngestTokenizer(SchemaField field, java.util.Locale locale)
Get the underlying tokenizer to use for tokenizing fields in the ingest workflow.default Tokenizer
Tokenizer. getQueryTokenizer(SchemaField field, java.util.Locale locale)
Get the underlaying tokenizer to use for tokenizing fields in the query workflow.Phrase
Tokenizer. tokenize(SchemaField field, java.util.Locale locale, SearchTerm term)
Tokenizesterm
into a Phrase for query processing.Phrase
Tokenizer. tokenize(SchemaField field, java.util.Locale locale, TermRange range)
Tokenizesrange
into a Phrase for query processing.Phrase
Tokenizer. tokenize(SchemaField field, java.util.Locale locale, WildcardTerm term)
Tokenizes a wildcardterm
into a Phrase for query processing.void
Tokenizer. tokenize(SchemaField field, java.util.Locale locale, TokenList tokens)
Tokenizes all tokens intokens
.default TokenList
Tokenizer. tokenize(SchemaField field, java.util.Locale locale, java.lang.String value)
Tokenizesvalue
into a TokenList. -
Uses of SchemaField in com.attivio.util
Methods in com.attivio.util with parameters of type SchemaField Modifier and Type Method Description static boolean
SchemaUtils. validate(StatusListener log, Schema schema, SchemaField field)
Schema Field validation. -
Uses of SchemaField in com.attivio.util.serialization
Methods in com.attivio.util.serialization that return SchemaField Modifier and Type Method Description static SchemaField
SchemaConverter. unmarshalSchemaField(com.thoughtworks.xstream.io.HierarchicalStreamReader reader)
Methods in com.attivio.util.serialization with parameters of type SchemaField Modifier and Type Method Description static void
SchemaConverter. marshalSchemaField(java.lang.String node, SchemaField field, com.thoughtworks.xstream.io.HierarchicalStreamWriter writer)
-