Enum GovernanceZoneSampleDefinitions
- java.lang.Object
-
- java.lang.Enum<GovernanceZoneSampleDefinitions>
-
- org.odpi.openmetadata.accessservices.governanceprogram.samples.zonecreate.GovernanceZoneSampleDefinitions
-
- All Implemented Interfaces:
Serializable,Comparable<GovernanceZoneSampleDefinitions>
public enum GovernanceZoneSampleDefinitions extends Enum<GovernanceZoneSampleDefinitions>
The GovernanceZoneSampleDefinitions is used to feed the definition of the governance zones for Coco Pharmaceuticals.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLINICAL_TRIALSDATA_LAKEDEVELOPMENTFINANCEGOVERNANCEHUMAN_RESOURCESINFRASTRUCTUREMANUFACTURINGPERSONALQUARANTINERESEARCHSALESTRASH_CAN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCriteria()Returns a description of the criteria for including assets in the zone.StringgetDescription()Returns a detailed description of the assets within the zone.StringgetDisplayName()Returns a descriptive name of the zone.StringgetZoneName()Returns the unique name for the zone.static GovernanceZoneSampleDefinitionsvalueOf(String name)Returns the enum constant of this type with the specified name.static GovernanceZoneSampleDefinitions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSONAL
public static final GovernanceZoneSampleDefinitions PERSONAL
-
QUARANTINE
public static final GovernanceZoneSampleDefinitions QUARANTINE
-
DATA_LAKE
public static final GovernanceZoneSampleDefinitions DATA_LAKE
-
RESEARCH
public static final GovernanceZoneSampleDefinitions RESEARCH
-
CLINICAL_TRIALS
public static final GovernanceZoneSampleDefinitions CLINICAL_TRIALS
-
HUMAN_RESOURCES
public static final GovernanceZoneSampleDefinitions HUMAN_RESOURCES
-
FINANCE
public static final GovernanceZoneSampleDefinitions FINANCE
-
INFRASTRUCTURE
public static final GovernanceZoneSampleDefinitions INFRASTRUCTURE
-
DEVELOPMENT
public static final GovernanceZoneSampleDefinitions DEVELOPMENT
-
MANUFACTURING
public static final GovernanceZoneSampleDefinitions MANUFACTURING
-
SALES
public static final GovernanceZoneSampleDefinitions SALES
-
GOVERNANCE
public static final GovernanceZoneSampleDefinitions GOVERNANCE
-
TRASH_CAN
public static final GovernanceZoneSampleDefinitions TRASH_CAN
-
-
Method Detail
-
values
public static GovernanceZoneSampleDefinitions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GovernanceZoneSampleDefinitions c : GovernanceZoneSampleDefinitions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GovernanceZoneSampleDefinitions valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getZoneName
public String getZoneName()
Returns the unique name for the zone.- Returns:
- qualified name
-
getDisplayName
public String getDisplayName()
Returns a descriptive name of the zone.- Returns:
- display name
-
getDescription
public String getDescription()
Returns a detailed description of the assets within the zone.- Returns:
- description
-
getCriteria
public String getCriteria()
Returns a description of the criteria for including assets in the zone.- Returns:
- criteria
-
-