Class IntersectionType


public class IntersectionType extends Type
Type node for an intersection type in a cast expression (added in JLS8 API).
 IntersectionType:
    Type & Type { & Type }
 

This kind of node is used only inside a cast expression.

Since:
3.10
Restriction:
This class is not intended to be instantiated by clients.
  • Field Details

  • Method Details

    • propertyDescriptors

      public static List propertyDescriptors(int apiLevel)
      Returns a list of structural property descriptors for this node type. Clients must not modify the result.
      Parameters:
      apiLevel - the API level; one of the AST.JLS* constants
      Returns:
      a list of property descriptors (element type: StructuralPropertyDescriptor)
    • types

      public List types()
      Returns the live ordered list of types in this intersection type. Adding and removing nodes from this list affects this node dynamically. All nodes in this list must be Types; attempts to add any other type of node will trigger an exception.
      Returns:
      the live list of types in this intersection type (element type: Type)