public enum ProcessingAttribute extends Enum<ProcessingAttribute>
| Enum Constant and Description |
|---|
ACCESS_EXTERNAL_DTD
Access External Document Type Declaration with an empty string to deny all access to external references
|
ACCESS_EXTERNAL_STYLESHEET
Access External Stylesheet with an empty string to deny all access to external references
|
| Modifier and Type | Field and Description |
|---|---|
private String |
attribute |
private Object |
value |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttribute() |
Object |
getValue() |
static ProcessingAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingAttribute ACCESS_EXTERNAL_DTD
public static final ProcessingAttribute ACCESS_EXTERNAL_STYLESHEET
public static ProcessingAttribute[] values()
for (ProcessingAttribute c : ProcessingAttribute.values()) System.out.println(c);
public static ProcessingAttribute 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 nullpublic String getAttribute()
public Object getValue()
Copyright © 2022 Apache NiFi Project. All rights reserved.