org.encog.parse.tags
public static enum Tag.Type extends Enum<Tag.Type>
| Enum Constant and Description |
|---|
BEGIN
A beginning tag.
|
CDATA
A CDATA section.
|
COMMENT
A comment.
|
END
An ending tag.
|
| Modifier and Type | Method and Description |
|---|---|
static Tag.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tag.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tag.Type BEGIN
public static final Tag.Type END
public static final Tag.Type COMMENT
public static final Tag.Type CDATA
public static Tag.Type[] values()
for (Tag.Type c : Tag.Type.values()) System.out.println(c);
public static Tag.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 © 2014. All Rights Reserved.