Interface MathMLSetElement

All Superinterfaces:
Element, MathMLContainer, MathMLContentContainer, MathMLContentElement, MathMLElement, Node
All Known Implementing Classes:
MathMLSetElementImpl

public interface MathMLSetElement extends MathMLContentContainer
This interface represents the set element in MathML Content. A set is a collection of distinct elements.
Since:
1.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Method Details

    • getIsExplicit

      boolean getIsExplicit()
      Returns true if the set is defined by the explicit listing of its elements.
      Returns:
      true if explicit, false otherwise (e.g., defined by properties).
    • getType

      String getType()
      Returns the type attribute of this element.
      Returns:
      the type (e.g., "set" or "multiset").
    • setType

      void setType(String type)
      Sets the type attribute of this element.
      Parameters:
      type - the type to set.