public enum PremiumPageBlobTier extends Enum<PremiumPageBlobTier>
Enum Constant and Description |
---|
P10
P10 Tier
|
P20
P20 Tier
|
P30
P30 Tier
|
P4
P4 Tier
|
P40
P40 Tier
|
P50
P50 Tier
|
P6
P6 Tier
|
P60
P60 Tier
|
UNKNOWN
The tier is not recognized by this version of the library.
|
Modifier and Type | Method and Description |
---|---|
protected static PremiumPageBlobTier |
parse(String premiumBlobTierString)
Parses a premium page blob tier from the given string.
|
static PremiumPageBlobTier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PremiumPageBlobTier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PremiumPageBlobTier UNKNOWN
public static final PremiumPageBlobTier P4
public static final PremiumPageBlobTier P6
public static final PremiumPageBlobTier P10
public static final PremiumPageBlobTier P20
public static final PremiumPageBlobTier P30
public static final PremiumPageBlobTier P40
public static final PremiumPageBlobTier P50
public static final PremiumPageBlobTier P60
public static PremiumPageBlobTier[] values()
for (PremiumPageBlobTier c : PremiumPageBlobTier.values()) System.out.println(c);
public static PremiumPageBlobTier 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 nullprotected static PremiumPageBlobTier parse(String premiumBlobTierString)
premiumBlobTierString
- A String
which contains the premium page blob tier to parse.PremiumPageBlobTier
value that represents the premium page blob tier.Copyright © 2019. All rights reserved.