public enum LogAggregationStatus extends Enum<LogAggregationStatus>
Status of Log aggregation.
| Enum Constant and Description | 
|---|
| DISABLEDLog Aggregation is Disabled. | 
| FAILEDLog Aggregation is completed. | 
| NOT_STARTLog Aggregation does not Start. | 
| RUNNINGLog Aggregation is Running. | 
| RUNNING_WITH_FAILURELog Aggregation is Running, but has failures in previous cycles. | 
| SUCCEEDEDLog Aggregation is Succeeded. | 
| TIME_OUTThe application is finished, but the log aggregation status is not updated
 for a long time. | 
| Modifier and Type | Method and Description | 
|---|---|
| static LogAggregationStatus | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LogAggregationStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LogAggregationStatus DISABLED
public static final LogAggregationStatus NOT_START
public static final LogAggregationStatus RUNNING
public static final LogAggregationStatus RUNNING_WITH_FAILURE
public static final LogAggregationStatus SUCCEEDED
public static final LogAggregationStatus FAILED
public static final LogAggregationStatus TIME_OUT
public static LogAggregationStatus[] values()
for (LogAggregationStatus c : LogAggregationStatus.values()) System.out.println(c);
public static LogAggregationStatus 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 nullCopyright © 2008–2023 Apache Software Foundation. All rights reserved.