Enum JobType
- java.lang.Object
-
- java.lang.Enum<JobType>
-
- com.oracle.bmc.datacatalog.model.JobType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<JobType>
@Generated(value="OracleSDKGenerator", comments="API Version: 20190325") public enum JobType extends Enum<JobType> implements BmcEnum
Type of job as described below.HARVEST - Harvest jobs are metadata crawlers that extract schema from data assets. PROFILING - Profiling jobs are data profilers that extract metrics about data like histograms, distribution, min, max, avg and so on. SAMPLING - Sampling jobs extract a small subset of data for profiling and viewing. PREVIEW - Preview jobs are metadata crawlers but allow users to filter and view metadata entities in data assets. IMPORT - Import jobs import metadata in data catalog repository from a data catalog exported file. EXPORT - Export jobs export data catalog metadata for imports into other data catalog repositories. IMPORT_GLOSSARY - Job type to import glossary metadata from a file. EXPORT_GLOSSARY - Job type to export glossary metadata to a file. ASYNC_DELETE - Job type for asynchronous bulk delete on data assets, folders and data entities. PURGE - Job type for cleaning up schedules, executions and logs of a Job. IMPORT_DATA_ASSET - Job type to import technical objects to a data asset. CREATE_SCAN_PROXY - Job type to create scan proxy resource for RAC enabled data asset. ASYNC_EXPORT_GLOSSARY - Job type to export glossary metadata to a file asynchronously. ASYNC_EXPORT_DATA_ASSET - Job type to export data assets metadata to a file asynchronously.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AsyncDelete
AsyncExportDataAsset
AsyncExportGlossary
CreateScanProxy
Export
ExportGlossary
Harvest
Immediate
ImmediateExecution
Import
ImportDataAsset
ImportGlossary
Internal
Preview
Profiling
Purge
Sampling
Scheduled
ScheduledExecution
ScheduledExecutionInstance
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JobType
create(String key)
String
getValue()
static JobType
valueOf(String name)
Returns the enum constant of this type with the specified name.static JobType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Harvest
public static final JobType Harvest
-
Profiling
public static final JobType Profiling
-
Sampling
public static final JobType Sampling
-
Preview
public static final JobType Preview
-
Import
public static final JobType Import
-
Export
public static final JobType Export
-
ImportGlossary
public static final JobType ImportGlossary
-
ExportGlossary
public static final JobType ExportGlossary
-
Internal
public static final JobType Internal
-
Purge
public static final JobType Purge
-
Immediate
public static final JobType Immediate
-
Scheduled
public static final JobType Scheduled
-
ImmediateExecution
public static final JobType ImmediateExecution
-
ScheduledExecution
public static final JobType ScheduledExecution
-
ScheduledExecutionInstance
public static final JobType ScheduledExecutionInstance
-
AsyncDelete
public static final JobType AsyncDelete
-
ImportDataAsset
public static final JobType ImportDataAsset
-
CreateScanProxy
public static final JobType CreateScanProxy
-
AsyncExportGlossary
public static final JobType AsyncExportGlossary
-
AsyncExportDataAsset
public static final JobType AsyncExportDataAsset
-
UnknownEnumValue
public static final JobType UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static JobType[] 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 (JobType c : JobType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobType 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
-
-