com.topologi.diffx.config.TextGranularity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j Show documentation
Show all versions of docx4j Show documentation
docx4j is a library which helps you to work with the Office Open
XML file format as used in docx
documents, pptx presentations, and xlsx spreadsheets.
package com.topologi.diffx.config;
/**
* Defines how should be tokenised and compared.
*
* @author Christophe Lauret
* @version 10 May 2010
*/
public enum TextGranularity {
/**
* Differences should be reported at the character level.
*/
CHARACTER,
/**
* Differences should be reported at the word level.
*/
WORD,
/**
* Differences should be reported for the entire text node.
*/
TEXT
}