Enum VpnProtocol
- All Implemented Interfaces:
Comparable<VpnProtocol>
The tunnelling protocol a configuration uses.
The list is short because it is limited to what both platforms can be
asked to run without the app shipping its own tunnel. Anything else needs
a packet tunnel, which is a much larger commitment; see the
com.codename1.vpn package documentation.
The ordinals cross the SPI boundary, so existing constants must not be reordered.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic VpnProtocolReturns the enum constant of this type with the specified name.static VpnProtocol[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOf
-
Enum Constant Details
-
IKEV2
IKEv2, the protocol both platforms implement themselves. This is the one to use unless there is a reason not to. -
IPSEC
IPsec with a pre-shared key. Available on iOS; Android's managed profile API does not offer it, and reportsVpnError.NOT_SUPPORTED.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-