public static enum CheckpointOptions.AlignmentType extends Enum<CheckpointOptions.AlignmentType>
Enum Constant and Description |
---|
ALIGNED |
AT_LEAST_ONCE |
FORCED_ALIGNED |
UNALIGNED |
Modifier and Type | Method and Description |
---|---|
static CheckpointOptions.AlignmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckpointOptions.AlignmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckpointOptions.AlignmentType AT_LEAST_ONCE
public static final CheckpointOptions.AlignmentType ALIGNED
public static final CheckpointOptions.AlignmentType UNALIGNED
public static final CheckpointOptions.AlignmentType FORCED_ALIGNED
public static CheckpointOptions.AlignmentType[] values()
for (CheckpointOptions.AlignmentType c : CheckpointOptions.AlignmentType.values()) System.out.println(c);
public static CheckpointOptions.AlignmentType 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 © 2014–2021 The Apache Software Foundation. All rights reserved.