public enum TunnelType extends Enum<TunnelType>
| Enum Constant and Description |
|---|
BaseAndStream
全量加增量类型。
|
BaseData
全量类型。
|
Stream
增量类型。
|
| Modifier and Type | Method and Description |
|---|---|
static TunnelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TunnelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TunnelType BaseData
public static final TunnelType Stream
public static final TunnelType BaseAndStream
public static TunnelType[] values()
for (TunnelType c : TunnelType.values()) System.out.println(c);
public static TunnelType 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.