public enum ObfuscationLevel extends Enum<ObfuscationLevel>
Enum Constant and Description |
---|
FULL
Aggressive obfuscation of everything.
|
MINIMAL
White spaces are removed.
|
NONE
Generated JavaScript is (sort of) human readable.
|
Modifier and Type | Method and Description |
---|---|
static ObfuscationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObfuscationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObfuscationLevel NONE
public static final ObfuscationLevel MINIMAL
public static final ObfuscationLevel FULL
public static ObfuscationLevel[] values()
for (ObfuscationLevel c : ObfuscationLevel.values()) System.out.println(c);
public static ObfuscationLevel 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 © 2025 API Design. All Rights Reserved.