public static enum HtmlTool.JoinSeparator extends Enum<HtmlTool.JoinSeparator>
Enum Constant and Description |
---|
AFTER
Keep separators at the start of partitions.
|
BEFORE
Keep separators at the end of partitions.
|
NO
Drop separators altogether.
|
Modifier and Type | Method and Description |
---|---|
static HtmlTool.JoinSeparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlTool.JoinSeparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlTool.JoinSeparator AFTER
public static final HtmlTool.JoinSeparator BEFORE
public static final HtmlTool.JoinSeparator NO
public static HtmlTool.JoinSeparator[] values()
for (HtmlTool.JoinSeparator c : HtmlTool.JoinSeparator.values()) System.out.println(c);
public static HtmlTool.JoinSeparator 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 © 2015 Marek Romanowski. All rights reserved.