public static enum IDocMarkup.Markup extends java.lang.Enum<IDocMarkup.Markup>
Enum Constant and Description |
---|
Bold |
Center |
ComputerOutput |
Emphasis |
Heading |
Normal |
Preformatted |
SmallFont |
Subscript |
Superscript |
Modifier and Type | Method and Description |
---|---|
static IDocMarkup.Markup |
enumFor(int value) |
int |
value() |
static IDocMarkup.Markup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IDocMarkup.Markup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDocMarkup.Markup Normal
public static final IDocMarkup.Markup Bold
public static final IDocMarkup.Markup Emphasis
public static final IDocMarkup.Markup ComputerOutput
public static final IDocMarkup.Markup Subscript
public static final IDocMarkup.Markup Superscript
public static final IDocMarkup.Markup SmallFont
public static final IDocMarkup.Markup Center
public static final IDocMarkup.Markup Preformatted
public static final IDocMarkup.Markup Heading
public static IDocMarkup.Markup[] values()
for (IDocMarkup.Markup c : IDocMarkup.Markup.values()) System.out.println(c);
public static IDocMarkup.Markup valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static IDocMarkup.Markup enumFor(int value)