Enum IngestionJobLauncher.PinotIngestionJobType
- java.lang.Object
-
- java.lang.Enum<IngestionJobLauncher.PinotIngestionJobType>
-
- org.apache.pinot.spi.ingestion.batch.IngestionJobLauncher.PinotIngestionJobType
-
- All Implemented Interfaces:
Serializable,Comparable<IngestionJobLauncher.PinotIngestionJobType>,java.lang.constant.Constable
- Enclosing class:
- IngestionJobLauncher
public static enum IngestionJobLauncher.PinotIngestionJobType extends Enum<IngestionJobLauncher.PinotIngestionJobType>
Ingestion Job type Enum.
-
-
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 SegmentCreationSegmentCreationAndMetadataPushSegmentCreationAndTarPushSegmentCreationAndUriPushSegmentMetadataPushSegmentTarPushSegmentUriPush
-
Method Summary
Modifier and Type Method Description static IngestionJobLauncher.PinotIngestionJobTypefromString(String name)static IngestionJobLauncher.PinotIngestionJobTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IngestionJobLauncher.PinotIngestionJobType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SegmentCreation
public static final IngestionJobLauncher.PinotIngestionJobType SegmentCreation
-
SegmentTarPush
public static final IngestionJobLauncher.PinotIngestionJobType SegmentTarPush
-
SegmentUriPush
public static final IngestionJobLauncher.PinotIngestionJobType SegmentUriPush
-
SegmentMetadataPush
public static final IngestionJobLauncher.PinotIngestionJobType SegmentMetadataPush
-
SegmentCreationAndTarPush
public static final IngestionJobLauncher.PinotIngestionJobType SegmentCreationAndTarPush
-
SegmentCreationAndUriPush
public static final IngestionJobLauncher.PinotIngestionJobType SegmentCreationAndUriPush
-
SegmentCreationAndMetadataPush
public static final IngestionJobLauncher.PinotIngestionJobType SegmentCreationAndMetadataPush
-
-
Method Detail
-
values
public static IngestionJobLauncher.PinotIngestionJobType[] 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 IngestionJobLauncher.PinotIngestionJobType 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
-
fromString
public static IngestionJobLauncher.PinotIngestionJobType fromString(String name)
-
-