public static enum HtmlTool.JoinSeparator extends Enum<HtmlTool.JoinSeparator>
| Enum Constant and Description | 
|---|
| AFTERKeep separators at the start of partitions. | 
| BEFOREKeep separators at the end of partitions. | 
| NODrop 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 © 2012–2014 Andrius Velykis. All rights reserved.