public enum RetentionBasis extends Enum<RetentionBasis> implements Serializable
| Enum Constant and Description |
|---|
ContractLifetime
The data is needed for the lifetime of the referenced contract.
|
Other
Another basis for determining the retention requirement.
|
ProjectLifetime
The data is needed for the lifetime of the referenced project.
|
RegulatedLifetime
The retention period for the data is defined by the referenced regulation.
|
TeamLifetime
The data is needed for the lifetime of the referenced team.
|
Temporary
This data is temporary.
|
TimeBoxedLifetime
The data is needed for the specified time.
|
Unclassified
There is no assessment of the retention requirements for this data.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the RetentionBasis enum instance
|
int |
getOrdinal()
Return the numerical value for the enum.
|
static RetentionBasis |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RetentionBasis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RetentionBasis Unclassified
public static final RetentionBasis Temporary
public static final RetentionBasis ProjectLifetime
public static final RetentionBasis TeamLifetime
public static final RetentionBasis ContractLifetime
public static final RetentionBasis RegulatedLifetime
public static final RetentionBasis TimeBoxedLifetime
public static final RetentionBasis Other
public static RetentionBasis[] values()
for (RetentionBasis c : RetentionBasis.values()) System.out.println(c);
public static RetentionBasis valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getOrdinal()
public String getDescription()
public String getName()
Copyright © 2018–2021 LF AI & Data Foundation. All rights reserved.