public static enum MinimizeHtmlMarkupHandler.MinimizeMode extends Enum<MinimizeHtmlMarkupHandler.MinimizeMode>
Enumeration for the type of minimization to be performed.
ONLY_WHITE_SPACE for compacting only excess white space.COMPLETE for performing all available compacting operations.| Enum Constant and Description |
|---|
COMPLETE |
ONLY_WHITE_SPACE |
| Modifier and Type | Method and Description |
|---|---|
static MinimizeHtmlMarkupHandler.MinimizeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MinimizeHtmlMarkupHandler.MinimizeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinimizeHtmlMarkupHandler.MinimizeMode ONLY_WHITE_SPACE
public static final MinimizeHtmlMarkupHandler.MinimizeMode COMPLETE
public static MinimizeHtmlMarkupHandler.MinimizeMode[] values()
for (MinimizeHtmlMarkupHandler.MinimizeMode c : MinimizeHtmlMarkupHandler.MinimizeMode.values()) System.out.println(c);
public static MinimizeHtmlMarkupHandler.MinimizeMode 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 © 2022 The ATTOPARSER team. All rights reserved.