public enum JIPipeTextAnnotationMergeMode extends Enum<JIPipeTextAnnotationMergeMode>
Enum Constant and Description |
---|
Discard |
Merge |
MergeLists |
OverwriteExisting |
SkipExisting |
Modifier and Type | Method and Description |
---|---|
static String[] |
extractMergedAnnotations(String merged)
Extracts merged annotations
|
List<JIPipeTextAnnotation> |
merge(Collection<JIPipeTextAnnotation> annotations)
Ensures that a list of annotations has unique names.
|
String |
merge(String existingValue,
String newValue)
Merges the new annotation value into the existing one according to the strategy
|
void |
mergeInto(Map<String,JIPipeTextAnnotation> target,
Collection<JIPipeTextAnnotation> annotations)
Ensures that a list of annotations has unique names.
|
String |
toString() |
static JIPipeTextAnnotationMergeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JIPipeTextAnnotationMergeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JIPipeTextAnnotationMergeMode SkipExisting
public static final JIPipeTextAnnotationMergeMode OverwriteExisting
public static final JIPipeTextAnnotationMergeMode Merge
public static final JIPipeTextAnnotationMergeMode MergeLists
public static final JIPipeTextAnnotationMergeMode Discard
public static JIPipeTextAnnotationMergeMode[] values()
for (JIPipeTextAnnotationMergeMode c : JIPipeTextAnnotationMergeMode.values()) System.out.println(c);
public static JIPipeTextAnnotationMergeMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static String[] extractMergedAnnotations(String merged)
merged
- the annotation valuepublic List<JIPipeTextAnnotation> merge(Collection<JIPipeTextAnnotation> annotations)
annotations
- input annotations. can have duplicate names.public void mergeInto(Map<String,JIPipeTextAnnotation> target, Collection<JIPipeTextAnnotation> annotations)
target
- the target listannotations
- input annotations. can have duplicate names.public String merge(String existingValue, String newValue)
existingValue
- the existing valuenewValue
- the value to be mergedpublic String toString()
toString
in class Enum<JIPipeTextAnnotationMergeMode>
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.