public enum MathFormat extends Enum<MathFormat>
| Modifier and Type | Class and Description |
|---|---|
static class |
MathFormat.Adapter |
| Modifier and Type | Method and Description |
|---|---|
static MathFormat |
fromValue(String text) |
String |
getValue() |
static MathFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MathFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MathFormat MATHML
public static final MathFormat LATEX
public static MathFormat[] values()
for (MathFormat c : MathFormat.values()) System.out.println(c);
public static MathFormat 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 nullpublic String getValue()
public static MathFormat fromValue(String text)
Copyright © 2025. All rights reserved.