public enum VirtualConnectionType extends Enum<VirtualConnectionType>
| Enum Constant and Description |
|---|
INVISIBLE
Only allowed when connecting with applications
|
STRONG
The "normal" connection type, which is mandated when connecting to the
"platform receiver"
|
WEAK
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static VirtualConnectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualConnectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualConnectionType STRONG
@Deprecated public static final VirtualConnectionType WEAK
public static final VirtualConnectionType INVISIBLE
public static VirtualConnectionType[] values()
for (VirtualConnectionType c : VirtualConnectionType.values()) System.out.println(c);
public static VirtualConnectionType 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 int getValue()
Copyright © 2022. All rights reserved.