Enum IngestionRun.IngestionStatus
- java.lang.Object
-
- java.lang.Enum<IngestionRun.IngestionStatus>
-
- com.snowflake.connectors.application.observability.IngestionRun.IngestionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<IngestionRun.IngestionStatus>
- Enclosing class:
- IngestionRun
public static enum IngestionRun.IngestionStatus extends Enum<IngestionRun.IngestionStatus>
Ingestion run status.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELED
Ingestion cancelled.COMPLETED
Ingestion successfully completed.FAILED
Ingestion failed.IN_PROGRESS
Ingestion ongoing, in progress.NOT_FOUND
Ingestion resource not found in the source system.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IngestionRun.IngestionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static IngestionRun.IngestionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IN_PROGRESS
public static final IngestionRun.IngestionStatus IN_PROGRESS
Ingestion ongoing, in progress.
-
COMPLETED
public static final IngestionRun.IngestionStatus COMPLETED
Ingestion successfully completed.
-
FAILED
public static final IngestionRun.IngestionStatus FAILED
Ingestion failed.
-
CANCELED
public static final IngestionRun.IngestionStatus CANCELED
Ingestion cancelled.
-
NOT_FOUND
public static final IngestionRun.IngestionStatus NOT_FOUND
Ingestion resource not found in the source system.
-
-
Method Detail
-
values
public static IngestionRun.IngestionStatus[] 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 (IngestionRun.IngestionStatus c : IngestionRun.IngestionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IngestionRun.IngestionStatus 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
-
-