Package odata.msgraph.client.beta.enums
Enum AppleVpnConnectionType
- java.lang.Object
-
- java.lang.Enum<AppleVpnConnectionType>
-
- odata.msgraph.client.beta.enums.AppleVpnConnectionType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<AppleVpnConnectionType>
public enum AppleVpnConnectionType extends Enum<AppleVpnConnectionType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static AppleVpnConnectionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AppleVpnConnectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CISCO_ANY_CONNECT
public static final AppleVpnConnectionType CISCO_ANY_CONNECT
-
PULSE_SECURE
public static final AppleVpnConnectionType PULSE_SECURE
-
F5EDGE_CLIENT
public static final AppleVpnConnectionType F5EDGE_CLIENT
-
DELL_SONIC_WALL_MOBILE_CONNECT
public static final AppleVpnConnectionType DELL_SONIC_WALL_MOBILE_CONNECT
-
CHECK_POINT_CAPSULE_VPN
public static final AppleVpnConnectionType CHECK_POINT_CAPSULE_VPN
-
CUSTOM_VPN
public static final AppleVpnConnectionType CUSTOM_VPN
-
CISCO_IPSEC
public static final AppleVpnConnectionType CISCO_IPSEC
-
CITRIX
public static final AppleVpnConnectionType CITRIX
-
CISCO_ANY_CONNECT_V2
public static final AppleVpnConnectionType CISCO_ANY_CONNECT_V2
-
PALO_ALTO_GLOBAL_PROTECT
public static final AppleVpnConnectionType PALO_ALTO_GLOBAL_PROTECT
-
ZSCALER_PRIVATE_ACCESS
public static final AppleVpnConnectionType ZSCALER_PRIVATE_ACCESS
-
F5ACCESS2018
public static final AppleVpnConnectionType F5ACCESS2018
-
CITRIX_SSO
public static final AppleVpnConnectionType CITRIX_SSO
-
PALO_ALTO_GLOBAL_PROTECT_V2
public static final AppleVpnConnectionType PALO_ALTO_GLOBAL_PROTECT_V2
-
IK_EV2
public static final AppleVpnConnectionType IK_EV2
-
ALWAYS_ON
public static final AppleVpnConnectionType ALWAYS_ON
-
MICROSOFT_TUNNEL
public static final AppleVpnConnectionType MICROSOFT_TUNNEL
-
NET_MOTION_MOBILITY
public static final AppleVpnConnectionType NET_MOTION_MOBILITY
-
MICROSOFT_PROTECT
public static final AppleVpnConnectionType MICROSOFT_PROTECT
-
-
Method Detail
-
values
public static AppleVpnConnectionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AppleVpnConnectionType c : AppleVpnConnectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AppleVpnConnectionType valueOf(String name)
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
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-