java.io.Serializable, java.lang.Comparable<LogAggregationStatus>public enum LogAggregationStatus extends java.lang.Enum<LogAggregationStatus>
Status of Log aggregation.
| Enum Constant | Description |
|---|---|
DISABLED |
Log Aggregation is Disabled.
|
FAILED |
Log Aggregation is completed.
|
NOT_START |
Log Aggregation does not Start.
|
RUNNING |
Log Aggregation is Running.
|
RUNNING_WITH_FAILURE |
Log Aggregation is Running, but has failures in previous cycles.
|
SUCCEEDED |
Log Aggregation is Succeeded.
|
TIME_OUT |
The application is finished, but the log aggregation status is not updated
for a long time.
|
| Modifier and Type | Method | Description |
|---|---|---|
static LogAggregationStatus |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.