public enum ProcessingPurposeSubelementName extends java.lang.Enum<ProcessingPurposeSubelementName>
This enum defines the permissible sub-elements that can appear within a `<ProcessingPurpose>` element, ensuring that only predefined sub-elements are used during XML parsing and validation.
Each enum constant represents a valid sub-element name and holds its corresponding XML name, which is the actual name used in the XML file. Additionally, each sub-element defines a set of allowed attributes via the `allowedAttributeNames` field. This further restricts the structure of the XML document by specifying which attributes are valid within each sub-element.
Modifier and Type | Class and Description |
---|---|
static class |
ProcessingPurposeSubelementName.ProcessingPurposeSubelementNameAttributeName
nested enum representing the attributes available per ProcessingPurposeSubelementName
|
Enum Constant and Description |
---|
LEGAL_BASIS
Represents the `<LegalBasis>` sub-element, which specifies a processing legal basis associated with the processing purpose.
|
Modifier and Type | Field and Description |
---|---|
java.util.Set<ProcessingPurposeSubelementName.ProcessingPurposeSubelementNameAttributeName> |
allowedAttributeNames
The allowed attribute names for this subelement of the ProcessingPurpose element.
|
java.lang.String |
xmlName
The XML name of the subelement of the ProcessingPurpose element.
|
Modifier and Type | Method and Description |
---|---|
static ProcessingPurposeSubelementName |
byXmlName(java.lang.String xmlName)
Retrieves a `ProcessingPurposeSubelementName` by its XML name.
|
static java.lang.String |
getAllowed()
Returns a comma-separated string of all allowed XML sub-element names within a `<ProcessingPurpose>` element.
|
static ProcessingPurposeSubelementName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingPurposeSubelementName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingPurposeSubelementName LEGAL_BASIS
Allowed attributes:
public final java.lang.String xmlName
public final java.util.Set<ProcessingPurposeSubelementName.ProcessingPurposeSubelementNameAttributeName> allowedAttributeNames
public static ProcessingPurposeSubelementName[] values()
for (ProcessingPurposeSubelementName c : ProcessingPurposeSubelementName.values()) System.out.println(c);
public static ProcessingPurposeSubelementName valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ProcessingPurposeSubelementName byXmlName(java.lang.String xmlName)
xmlName
- The XML name of the ProcessingPurpose subelement.null
if not found.public static java.lang.String getAllowed()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.