Package org.apache.pinot.spi.utils
Enum CommonConstants.Segment.Realtime.Status
- java.lang.Object
-
- java.lang.Enum<CommonConstants.Segment.Realtime.Status>
-
- org.apache.pinot.spi.utils.CommonConstants.Segment.Realtime.Status
-
- All Implemented Interfaces:
Serializable,Comparable<CommonConstants.Segment.Realtime.Status>,java.lang.constant.Constable
- Enclosing class:
- CommonConstants.Segment.Realtime
public static enum CommonConstants.Segment.Realtime.Status extends Enum<CommonConstants.Segment.Realtime.Status>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DONEIN_PROGRESSUPLOADED
-
Method Summary
Modifier and Type Method Description booleanisCompleted()Returnstrueif the segment is completed (DONE/UPLOADED),falseotherwise.static CommonConstants.Segment.Realtime.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static CommonConstants.Segment.Realtime.Status[]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 CommonConstants.Segment.Realtime.Status IN_PROGRESS
-
DONE
public static final CommonConstants.Segment.Realtime.Status DONE
-
UPLOADED
public static final CommonConstants.Segment.Realtime.Status UPLOADED
-
-
Method Detail
-
values
public static CommonConstants.Segment.Realtime.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommonConstants.Segment.Realtime.Status 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
-
isCompleted
public boolean isCompleted()
Returnstrueif the segment is completed (DONE/UPLOADED),falseotherwise.
-
-