public enum TunnelStage extends Enum<TunnelStage>
| Enum Constant and Description |
|---|
InitBaseDataAndStreamShard
初始化。
|
ProcessBaseData
全量处理。
|
ProcessStream
增量处理。
|
| Modifier and Type | Method and Description |
|---|---|
static TunnelStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TunnelStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TunnelStage InitBaseDataAndStreamShard
public static final TunnelStage ProcessBaseData
public static final TunnelStage ProcessStream
public static TunnelStage[] values()
for (TunnelStage c : TunnelStage.values()) System.out.println(c);
public static TunnelStage 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 © 2024. All Rights Reserved.