public enum IotHubClientProtocol extends Enum<IotHubClientProtocol>
| Modifier and Type | Method and Description |
|---|---|
static IotHubClientProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IotHubClientProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IotHubClientProtocol HTTPS
public static final IotHubClientProtocol AMQPS
public static final IotHubClientProtocol MQTT
public static final IotHubClientProtocol AMQPS_WS
public static IotHubClientProtocol[] values()
for (IotHubClientProtocol c : IotHubClientProtocol.values()) System.out.println(c);
public static IotHubClientProtocol 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 © 2017. All rights reserved.