Package com.oracle.bmc.datacatalog.model
Enum HarvestStatus
- java.lang.Object
-
- java.lang.Enum<HarvestStatus>
-
- com.oracle.bmc.datacatalog.model.HarvestStatus
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<HarvestStatus>
@Generated(value="OracleSDKGenerator", comments="API Version: 20190325") public enum HarvestStatus extends Enum<HarvestStatus> implements BmcEnum
Harvest state of the object indicates the completeness of the metadata definition of the object in the catalog.COMPLETE - The object’s metadata is harvested successfully including properties, relationships, and its children. ERROR - There is an error during the harvest process. This could be due to failure in the harvest process, or invalid or currupted data. IN-PROGRESS - The harvest is currently in progress. This might imply a successful shallow harvest and a deep harvest is currently in progress. DEFERRED - The dependencies are incomplete and the resolution of the metadata is deferred until all information is available for the object.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Complete
Deferred
Error
InProgress
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 HarvestStatus
create(String key)
String
getValue()
static HarvestStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static HarvestStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Complete
public static final HarvestStatus Complete
-
Error
public static final HarvestStatus Error
-
InProgress
public static final HarvestStatus InProgress
-
Deferred
public static final HarvestStatus Deferred
-
UnknownEnumValue
public static final HarvestStatus 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 HarvestStatus[] 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 (HarvestStatus c : HarvestStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HarvestStatus 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
-
create
public static HarvestStatus create(String key)
-
-