public enum MathMLType extends Enum<MathMLType>
| Enum Constant and Description |
|---|
CONTENT
Content MathML.
|
CONTENT_BEFORE
Content MathML elements that are used in prefix form (not, abs, floor, etc).
|
CONTENT_BEFORE_MIDDLE
Content MathML elements that are used before formulae and in the middle as well (quotient, remainder).
|
CONTENT_GROUP
Content MathML elements that form a "group" (max, min, set, etc).
|
CONTENT_MIDDLE
Content MathML elements that are used in infix form (plus, times, equals, etc).
|
CONTENT_TRIGONOMETRY
Trigonometric functions in content MathML.
|
OTHER
Elements that don't strictly belong to presentation or content elements
(semantics, annotation, ...).
|
PRESENTATION
Presentation MathML.
|
| Modifier and Type | Method and Description |
|---|---|
static MathMLType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MathMLType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MathMLType PRESENTATION
public static final MathMLType CONTENT
public static final MathMLType CONTENT_TRIGONOMETRY
public static final MathMLType CONTENT_GROUP
public static final MathMLType CONTENT_MIDDLE
public static final MathMLType CONTENT_BEFORE
public static final MathMLType CONTENT_BEFORE_MIDDLE
public static final MathMLType OTHER
public static MathMLType[] values()
for (MathMLType c : MathMLType.values()) System.out.println(c);
public static MathMLType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2013. All Rights Reserved.