Enum Class Document.DuplicateLayerPolicy
- All Implemented Interfaces:
Serializable, Comparable<Document.DuplicateLayerPolicy>, Constable
- Enclosing interface:
Document
How
Document.merge(Document, DuplicateLayerPolicy) treats a layer key that is
present on both documents.- Since:
- 3.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionKeep one copy of a layer key present on both documents when the two layers are structurally equal, for example when two parallel branches ran the same tokenizer.Reject any layer key present on both documents. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static Document.DuplicateLayerPolicy[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
REJECT
Reject any layer key present on both documents. -
KEEP_EQUAL
Keep one copy of a layer key present on both documents when the two layers are structurally equal, for example when two parallel branches ran the same tokenizer. Layers whose contents differ are rejected as withREJECT. Equality isAnnotationequality: spans compare by offsets and type, never by probability, and values by their ownequals.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-