public static enum U.Mode extends Enum<U.Mode>
| Enum Constant and Description |
|---|
REPLACE_SELF_CLOSING_WITH_NULL |
| Modifier and Type | Method and Description |
|---|---|
static U.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static U.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final U.Mode REPLACE_SELF_CLOSING_WITH_NULL
public static U.Mode[] values()
for (U.Mode c : U.Mode.values()) System.out.println(c);
public static U.Mode 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 © 2020. All rights reserved.