public static enum SimpleNode.Type extends Enum<SimpleNode.Type>
Enum Constant and Description |
---|
Apostrophe |
Ellipsis |
Emdash |
Endash |
HRule |
Linebreak |
Nbsp |
Modifier and Type | Method and Description |
---|---|
static SimpleNode.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleNode.Type Apostrophe
public static final SimpleNode.Type Ellipsis
public static final SimpleNode.Type Emdash
public static final SimpleNode.Type Endash
public static final SimpleNode.Type HRule
public static final SimpleNode.Type Linebreak
public static final SimpleNode.Type Nbsp
public static SimpleNode.Type[] values()
for (SimpleNode.Type c : SimpleNode.Type.values()) System.out.println(c);
public static SimpleNode.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 nullCopyright © 2009–2023 org.pegdown. All rights reserved.