Enum AzureConfigurationParserUtils.AzureConnectionKey
- java.lang.Object
-
- java.lang.Enum<AzureConfigurationParserUtils.AzureConnectionKey>
-
- org.apache.jackrabbit.oak.segment.azure.util.AzureConfigurationParserUtils.AzureConnectionKey
-
- All Implemented Interfaces:
Serializable
,Comparable<AzureConfigurationParserUtils.AzureConnectionKey>
- Enclosing class:
- AzureConfigurationParserUtils
public static enum AzureConfigurationParserUtils.AzureConnectionKey extends Enum<AzureConfigurationParserUtils.AzureConnectionKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_KEY
ACCOUNT_NAME
BLOB_ENDPOINT
CONTAINER_NAME
DEFAULT_ENDPOINTS_PROTOCOL
DIRECTORY
SHARED_ACCESS_SIGNATURE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
text()
static AzureConfigurationParserUtils.AzureConnectionKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static AzureConfigurationParserUtils.AzureConnectionKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT_ENDPOINTS_PROTOCOL
public static final AzureConfigurationParserUtils.AzureConnectionKey DEFAULT_ENDPOINTS_PROTOCOL
-
ACCOUNT_NAME
public static final AzureConfigurationParserUtils.AzureConnectionKey ACCOUNT_NAME
-
ACCOUNT_KEY
public static final AzureConfigurationParserUtils.AzureConnectionKey ACCOUNT_KEY
-
BLOB_ENDPOINT
public static final AzureConfigurationParserUtils.AzureConnectionKey BLOB_ENDPOINT
-
CONTAINER_NAME
public static final AzureConfigurationParserUtils.AzureConnectionKey CONTAINER_NAME
-
DIRECTORY
public static final AzureConfigurationParserUtils.AzureConnectionKey DIRECTORY
-
SHARED_ACCESS_SIGNATURE
public static final AzureConfigurationParserUtils.AzureConnectionKey SHARED_ACCESS_SIGNATURE
-
-
Method Detail
-
values
public static AzureConfigurationParserUtils.AzureConnectionKey[] 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 (AzureConfigurationParserUtils.AzureConnectionKey c : AzureConfigurationParserUtils.AzureConnectionKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AzureConfigurationParserUtils.AzureConnectionKey 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
-
text
public String text()
-
-