public static enum XMLObfuscator.ElementConfigurer.ObfuscationMode extends Enum<XMLObfuscator.ElementConfigurer.ObfuscationMode>
Enum Constant and Description |
---|
EXCLUDE
Don't obfuscate nested elements, but instead traverse into them.
|
INHERIT
Use the obfuscator for the text of the element itself as well as the text of all nested elements.
|
INHERIT_OVERRIDABLE
Use the obfuscator for the text of the element itself as well as the text of all nested elements.
|
Modifier and Type | Method and Description |
---|---|
static XMLObfuscator.ElementConfigurer.ObfuscationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLObfuscator.ElementConfigurer.ObfuscationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLObfuscator.ElementConfigurer.ObfuscationMode EXCLUDE
public static final XMLObfuscator.ElementConfigurer.ObfuscationMode INHERIT
public static final XMLObfuscator.ElementConfigurer.ObfuscationMode INHERIT_OVERRIDABLE
public static XMLObfuscator.ElementConfigurer.ObfuscationMode[] values()
for (XMLObfuscator.ElementConfigurer.ObfuscationMode c : XMLObfuscator.ElementConfigurer.ObfuscationMode.values()) System.out.println(c);
public static XMLObfuscator.ElementConfigurer.ObfuscationMode 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–2023. All rights reserved.