public enum GDPRPolicyElementName extends java.lang.Enum<GDPRPolicyElementName>
Each enum constant represents a permissible subnode within the `<gdpr>` element and provides its corresponding name as it appears in the XML file. This ensures that only predefined subnodes are used during XML parsing and validation.
Additionally, each subnode 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 subnode.
Modifier and Type | Class and Description |
---|---|
static class |
GDPRPolicyElementName.GDPRPolicyAttributeName
Nested enum representing the attributes available for GDPRPolicyElementName.
|
Enum Constant and Description |
---|
AFFECTED_PERSON
Represents the `<affectedPerson>` subnode, which defines a path to information about the affected person.
|
RETENTION_VETO
Represents the `<retentionVeto>` subnode, which defines a path to a condition that might veto data retention.
|
Modifier and Type | Field and Description |
---|---|
java.lang.String |
xmlName
The XML name of the subnode.
|
Modifier and Type | Method and Description |
---|---|
static GDPRPolicyElementName |
byXmlName(java.lang.String xmlName)
Retrieves an `GDPRPolicyElementName` by its XML name.
|
static java.lang.String |
getAllowed()
Returns a comma-separated string of all allowed XML element names.
|
GDPRPolicyElementName.GDPRPolicyAttributeName[] |
getAllowedAttributeNames()
Returns the allowed attribute names for this subnode.
|
static GDPRPolicyElementName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GDPRPolicyElementName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GDPRPolicyElementName AFFECTED_PERSON
Allowed attributes:
public static final GDPRPolicyElementName RETENTION_VETO
Allowed attributes:
public static GDPRPolicyElementName[] values()
for (GDPRPolicyElementName c : GDPRPolicyElementName.values()) System.out.println(c);
public static GDPRPolicyElementName 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 GDPRPolicyElementName byXmlName(java.lang.String xmlName)
xmlName
- The XML name of the element.null
if not found.public static java.lang.String getAllowed()
public GDPRPolicyElementName.GDPRPolicyAttributeName[] getAllowedAttributeNames()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.