Enum ListKeyExpand
- java.lang.Object
-
- java.lang.Enum<ListKeyExpand>
-
- com.azure.resourcemanager.storage.models.ListKeyExpand
-
- All Implemented Interfaces:
Serializable,Comparable<ListKeyExpand>
public enum ListKeyExpand extends Enum<ListKeyExpand>
Defines values for ListKeyExpand.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KERBEnum value kerb.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListKeyExpandfromString(String value)Parses a serialized value to a ListKeyExpand instance.StringtoString()static ListKeyExpandvalueOf(String name)Returns the enum constant of this type with the specified name.static ListKeyExpand[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KERB
public static final ListKeyExpand KERB
Enum value kerb.
-
-
Method Detail
-
values
public static ListKeyExpand[] 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 (ListKeyExpand c : ListKeyExpand.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ListKeyExpand 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
-
fromString
public static ListKeyExpand fromString(String value)
Parses a serialized value to a ListKeyExpand instance.- Parameters:
value- the serialized value to parse.- Returns:
- the parsed ListKeyExpand object, or null if unable to parse.
-
toString
public String toString()
- Overrides:
toStringin classEnum<ListKeyExpand>
-
-