public enum AnnotationWalkingControl extends Enum<AnnotationWalkingControl>
| Enum Constant and Description |
|---|
DONT_WALK_ANNOTATIONS
Do not walk any annotations
|
WALK_ANNOTATIONS
Walk all annotations
|
WALK_ONTOLOGY_ANNOTATIONS_ONLY
Only walk ontology annotations (previous behaviour)
|
| Modifier and Type | Method and Description |
|---|---|
static AnnotationWalkingControl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationWalkingControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
<T extends OWLObject> |
walk(StructureWalker<T> walker,
OWLObject o)
Visit annotations on the object, if the setting allows for the
annotations to be visited.
|
public static final AnnotationWalkingControl DONT_WALK_ANNOTATIONS
public static final AnnotationWalkingControl WALK_ONTOLOGY_ANNOTATIONS_ONLY
public static final AnnotationWalkingControl WALK_ANNOTATIONS
public static AnnotationWalkingControl[] values()
for (AnnotationWalkingControl c : AnnotationWalkingControl.values()) System.out.println(c);
public static AnnotationWalkingControl 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 <T extends OWLObject> void walk(StructureWalker<T> walker, OWLObject o)
walker - walker to use to visit annotationso - object containing annotationsCopyright © 2017 The University of Manchester. All Rights Reserved.