public static enum Markup.Type extends Enum<Markup.Type>
| Enum Constant and Description |
|---|
END |
END_DOCUMENT |
START |
START_DOCUMENT |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Markup.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Markup.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Markup.Type START_DOCUMENT
public static final Markup.Type END_DOCUMENT
public static final Markup.Type START
public static final Markup.Type END
public static final Markup.Type TEXT
public static Markup.Type[] values()
for (Markup.Type c : Markup.Type.values()) System.out.println(c);
public static Markup.Type 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 toString()
toString in class Enum<Markup.Type>Copyright © 2017 Gregor Middell. All rights reserved.