public static enum JobConfig.CheckpointModeEnum extends Enum<JobConfig.CheckpointModeEnum>
Modifier and Type | Class and Description |
---|---|
static class |
JobConfig.CheckpointModeEnum.Adapter |
Enum Constant and Description |
---|
AT_LEAST_ONCE |
EXACTLY_ONCE |
Modifier and Type | Method and Description |
---|---|
static JobConfig.CheckpointModeEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static JobConfig.CheckpointModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobConfig.CheckpointModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobConfig.CheckpointModeEnum EXACTLY_ONCE
public static final JobConfig.CheckpointModeEnum AT_LEAST_ONCE
public static JobConfig.CheckpointModeEnum[] values()
for (JobConfig.CheckpointModeEnum c : JobConfig.CheckpointModeEnum.values()) System.out.println(c);
public static JobConfig.CheckpointModeEnum 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 nullpublic String getValue()
public String toString()
toString
in class Enum<JobConfig.CheckpointModeEnum>
public static JobConfig.CheckpointModeEnum fromValue(String text)
Copyright © 2023. All rights reserved.