public enum SharedAccessProtocols extends Enum<SharedAccessProtocols>
| Enum Constant and Description |
|---|
HTTPS_HTTP
Permission to use SAS only through https or http granted.
|
HTTPS_ONLY
Permission to use SAS only through https granted.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SharedAccessProtocols |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharedAccessProtocols[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharedAccessProtocols HTTPS_ONLY
public static final SharedAccessProtocols HTTPS_HTTP
public static SharedAccessProtocols[] values()
for (SharedAccessProtocols c : SharedAccessProtocols.values()) System.out.println(c);
public static SharedAccessProtocols 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 String toString()
toString in class Enum<SharedAccessProtocols>Copyright © 2018. All Rights Reserved.