public interface DescriptorElement
ValueElement: Represents low level element in the structure. For instance: A(B).
AlternativeListElement: Represents alternatives collection. For instance: A|B.
ChildrenListElement: Represents lists of elements. For instance: A,B.
Usage:
DescriptorElement element = ...; if (element instanceof ValueElement) { // some action } else if (element instanceof ChildrenListElement) { // some action } else if (element instanceof AlternativeListElement) { // some action }
Copyright © 2018 SAP SE. All Rights Reserved.