public enum TableSasProtocol extends Enum<TableSasProtocol>
| 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 |
|---|---|
static TableSasProtocol |
parse(String str)
Parses a
String into a TableSasProtocol value if possible. |
String |
toString() |
static TableSasProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableSasProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableSasProtocol HTTPS_ONLY
public static final TableSasProtocol HTTPS_HTTP
public static TableSasProtocol[] values()
public static TableSasProtocol 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 static TableSasProtocol parse(String str)
String into a TableSasProtocol value if possible.str - The value to try to parse.SasProtocol value that represents the string if possible.IllegalArgumentException - If str doesn't equal "https" or "https,http".public String toString()
toString in class Enum<TableSasProtocol>Copyright © 2021 Microsoft Corporation. All rights reserved.