public enum DataCategorySubelementName extends java.lang.Enum<DataCategorySubelementName>
This enum defines the permissible sub-elements that can appear within a `<DataCategory>` 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 |
DataCategorySubelementName.DataCategorySubelementAttributeName
nested enum representing the attributes available per DataCategorySubelementName
|
Enum Constant and Description |
---|
BUSINESS_INTEREST
Represents the `<BusinessInterest>` sub-element, which specifies a business interest
associated with the data category.
|
PROCESSING_PURPOSE
Represents the `<ProcessingPurpose>` sub-element, which specifies a processing purpose
associated with the data category.
|
RETENTION_PURPOSE
Represents the `<RetentionPurpose>` sub-element, which specifies a retention purpose
associated with the data category.
|
Modifier and Type | Field and Description |
---|---|
java.util.Set<DataCategorySubelementName.DataCategorySubelementAttributeName> |
allowedAttributeNames
The allowed attribute names for this subelement of the DataCategory element.
|
java.lang.String |
xmlName
The XML name of the subelement of the DataCategory element.
|
Modifier and Type | Method and Description |
---|---|
static DataCategorySubelementName |
byXmlName(java.lang.String xmlName)
Retrieves a `DataCategorySubelementName` by its XML name.
|
static java.lang.String |
getAllowed()
Returns a comma-separated string of all allowed XML sub-element names within a `<DataCategory>` element.
|
static DataCategorySubelementName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataCategorySubelementName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCategorySubelementName BUSINESS_INTEREST
Allowed attributes:
public static final DataCategorySubelementName PROCESSING_PURPOSE
Allowed attributes:
public static final DataCategorySubelementName RETENTION_PURPOSE
Allowed attributes:
public final java.lang.String xmlName
public final java.util.Set<DataCategorySubelementName.DataCategorySubelementAttributeName> allowedAttributeNames
public static DataCategorySubelementName[] values()
for (DataCategorySubelementName c : DataCategorySubelementName.values()) System.out.println(c);
public static DataCategorySubelementName 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 DataCategorySubelementName byXmlName(java.lang.String xmlName)
xmlName
- The XML name of the data category subelement.null
if not found.public static java.lang.String getAllowed()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.