Klasse UnionType


public class UnionType extends Type
Type node for an union type (added in JLS4 API).
 UnionType:
    Type | Type { | Type }
 

This kind of node is used inside a catch clause's formal parameter type.

Seit:
3.7.1
  • Felddetails

  • Methodendetails

    • propertyDescriptors

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

      public List types()
      Returns the live ordered list of types in this union 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.
      Gibt zurück:
      the live list of types in this union type (element type: Type)