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