Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Text.LongTextHelper
namespace Relativity.DataExchange.Export.VolumeManagerV2.Metadata.Text
{
public class LongTextHelper
{
public const string EXTRACTED_TEXT_COLUMN_NAME = "ExtractedText";
public LongTextHelper(ExportFile exportSettings, IFieldService fieldService, LongTextRepository longTextRepository);
public bool IsLongTextField(kCura.WinEDDS.ViewFieldInfo fieldInfo);
public bool IsLongTextField(FieldType fieldType);
public string GetTextFromField(ObjectExportInfo artifact, string fieldName);
public bool IsTextTooLong(string text);
public bool IsTextTooLong(ObjectExportInfo artifact, string fieldName);
public bool IsExtractedTextMissing();
public int GetFieldArtifactId(string fieldName);
public bool IsTextPrecedenceSet();
public kCura.WinEDDS.ViewFieldInfo GetTextPrecedenceField(ObjectExportInfo artifact);
public kCura.WinEDDS.ViewFieldInfo GetTextPrecedenceTrueField(ObjectExportInfo artifact, kCura.WinEDDS.ViewFieldInfo field);
public string GetLongTextFileLocation(ObjectExportInfo artifact, int fieldArtifactId);
public Encoding GetLongTextFieldFileEncoding(kCura.WinEDDS.ViewFieldInfo field);
}
}