public static enum Indenter.TagIndentSpot extends Enum<Indenter.TagIndentSpot>
EXPERIMENTAL MAY CHANGE
Enum Constant and Description |
---|
AFTER_END_TAG
Indicates position is after </tag>
|
AFTER_START_TAG
Indicates position is after <tag>
|
BEFORE_END_TAG
Indicates position is before </tag>
|
BEFORE_START_TAG
Indicates position is before <tag>
|
Modifier and Type | Method and Description |
---|---|
static Indenter.TagIndentSpot |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Indenter.TagIndentSpot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indenter.TagIndentSpot BEFORE_START_TAG
public static final Indenter.TagIndentSpot AFTER_START_TAG
public static final Indenter.TagIndentSpot BEFORE_END_TAG
public static final Indenter.TagIndentSpot AFTER_END_TAG
public static Indenter.TagIndentSpot[] values()
for (Indenter.TagIndentSpot c : Indenter.TagIndentSpot.values()) System.out.println(c);
public static Indenter.TagIndentSpot 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 © 2010–2014 JATL. All rights reserved.