public enum ElementName extends java.lang.Enum<ElementName>
Each enum constant represents a permissible element in the schema XML and provides its corresponding name as it appears in the XML file. This ensures that only predefined elements are used during XML parsing and validation.
Additionally, each 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 element.
Furthermore, some elements can have nested sub-elements. These are defined in the following enums:
Enum Constant and Description |
---|
ENTITY
Represents the "Entity" element in the schema XML, defining a business entity.
|
FOLDER
Represents the "Folder" element, defining a folder in the schema.
|
GDPR_BUSINESS_INTEREST
Represents the "GDPRBusinessInterest" element, defining a GDRP related business interest in the schema
that may justify the collection of data.
|
GDPR_DATA_CATEGORY
Represents the "GDPRDataCategory" element, defining a GDPR classification of data in the schema
according to their content and sensitivity (e.g. personal data, health data) .
|
GDPR_DATA_RETENTION_POLICY
Represents the "GDPRDataRetentionPolicy" element, defining a GDRP related retention policy.
|
GDPR_LAW
Represents the "GDPRLaw" element, defining a GDRP related law in the schema.
|
GDPR_PROCESSING_LEGAL_BASIS
Represents the "GDPRProcessingLegalBasis" element, defining a GDRP related legal basis for data processing in the schema.
|
GDPR_PROCESSING_PURPOSE
Represents the "GDPRProcessingPurpose" element, defining a GDRP related processing purpose in the schema.
|
GDPR_RETENTION_PURPOSE
Represents the "GDPRRetentionPurpose" element, defining a GDRP related retention purpose.
|
GENERATOR
Represents the "Generator" element, used to specify a generator class and its scope.
|
INCLUDE
Represents the "Include" element, used to include external schema definitions.
|
INTERFACE
Represents the "Interface" element, defining an interface in the schema.
|
MODULE
Represents the "Module" element, defining a module in the schema.
|
MODULE_INTEGRATOR
Represents the "ModuleIntegrator" element, specifying an integrator class for a module.
|
MODULE_PROVIDER
Represents the "ModuleProvider" element, defining a provider for a module.
|
TYPE
Represents the "Type" element, defining a custom type in the schema.
|
Modifier and Type | Field and Description |
---|---|
java.util.Set<AttributeName> |
allowedAttributeNames
The allowed attribute names for this element.
|
java.lang.String |
xmlName
The XML name of the element.
|
Modifier and Type | Method and Description |
---|---|
static ElementName |
byXmlName(java.lang.String xmlName)
Retrieves an `ElementName` by its XML name.
|
static java.lang.String |
getAllowed()
Returns a comma-separated string of all allowed XML element names.
|
static ElementName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElementName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementName ENTITY
Allowed attributes:
public static final ElementName INCLUDE
Allowed attributes:
public static final ElementName MODULE_PROVIDER
Allowed attributes:
public static final ElementName MODULE_INTEGRATOR
Allowed attributes:
public static final ElementName MODULE
Allowed attributes:
public static final ElementName GENERATOR
Allowed attributes:
public static final ElementName FOLDER
Allowed attributes:
public static final ElementName TYPE
Allowed attributes:
public static final ElementName INTERFACE
Allowed attributes:
public static final ElementName GDPR_DATA_CATEGORY
Allowed attributes:
Allowed sub-elements:
public static final ElementName GDPR_BUSINESS_INTEREST
Allowed attributes:
public static final ElementName GDPR_PROCESSING_PURPOSE
Allowed attributes:
Allowed sub-elements:
public static final ElementName GDPR_PROCESSING_LEGAL_BASIS
Allowed attributes:
public static final ElementName GDPR_LAW
Allowed attributes:
public static final ElementName GDPR_RETENTION_PURPOSE
Allowed attributes:
public static final ElementName GDPR_DATA_RETENTION_POLICY
Allowed attributes:
Allowed sub-elements:
public final java.lang.String xmlName
public final java.util.Set<AttributeName> allowedAttributeNames
public static ElementName[] values()
for (ElementName c : ElementName.values()) System.out.println(c);
public static ElementName 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 ElementName byXmlName(java.lang.String xmlName)
xmlName
- The XML name of the element.null
if not found.public static java.lang.String getAllowed()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.