Enum Constant and Description |
---|
ANCHOR |
CASHTAG |
HASHTAG |
LINEBREAK |
MENTION |
TEXT |
Modifier and Type | Method and Description |
---|---|
boolean |
equalsName(java.lang.String otherName) |
java.lang.String |
toString() |
static NodeTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeTypes ANCHOR
public static final NodeTypes CASHTAG
public static final NodeTypes HASHTAG
public static final NodeTypes LINEBREAK
public static final NodeTypes MENTION
public static final NodeTypes TEXT
public static NodeTypes[] values()
for (NodeTypes c : NodeTypes.values()) System.out.println(c);
public static NodeTypes 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 boolean equalsName(java.lang.String otherName)
public java.lang.String toString()
toString
in class java.lang.Enum<NodeTypes>