Package org.semanticweb.owlapi.util
Enum Class AnnotationWalkingControl
- All Implemented Interfaces:
Serializable
,Comparable<AnnotationWalkingControl>
,java.lang.constant.Constable
Control flag for whether to walk annotations
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDo not walk any annotationsWalk all annotationsOnly walk ontology annotations (previous behaviour) -
Method Summary
Modifier and TypeMethodDescriptionstatic AnnotationWalkingControl
Returns the enum constant of this class with the specified name.static AnnotationWalkingControl[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.<T extends OWLObject>
voidwalk
(StructureWalker<T> walker, OWLObject o) Visit annotations on the object, if the setting allows for the annotations to be visited.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
DONT_WALK_ANNOTATIONS
Do not walk any annotations -
WALK_ONTOLOGY_ANNOTATIONS_ONLY
Only walk ontology annotations (previous behaviour) -
WALK_ANNOTATIONS
Walk all annotations
-
-
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
-
walk
Visit annotations on the object, if the setting allows for the annotations to be visited.- Type Parameters:
T
- type- Parameters:
walker
- walker to use to visit annotationso
- object containing annotations
-