Enum SharedPrivateLinkResourceProvisioningState
- java.lang.Object
-
- java.lang.Enum<SharedPrivateLinkResourceProvisioningState>
-
- com.azure.resourcemanager.search.models.SharedPrivateLinkResourceProvisioningState
-
- All Implemented Interfaces:
Serializable,Comparable<SharedPrivateLinkResourceProvisioningState>
public enum SharedPrivateLinkResourceProvisioningState extends Enum<SharedPrivateLinkResourceProvisioningState>
Defines values for SharedPrivateLinkResourceProvisioningState.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETINGEnum value Deleting.FAILEDEnum value Failed.INCOMPLETEEnum value Incomplete.SUCCEEDEDEnum value Succeeded.UPDATINGEnum value Updating.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SharedPrivateLinkResourceProvisioningStatefromString(String value)Parses a serialized value to a SharedPrivateLinkResourceProvisioningState instance.StringtoString()static SharedPrivateLinkResourceProvisioningStatevalueOf(String name)Returns the enum constant of this type with the specified name.static SharedPrivateLinkResourceProvisioningState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPDATING
public static final SharedPrivateLinkResourceProvisioningState UPDATING
Enum value Updating.
-
DELETING
public static final SharedPrivateLinkResourceProvisioningState DELETING
Enum value Deleting.
-
FAILED
public static final SharedPrivateLinkResourceProvisioningState FAILED
Enum value Failed.
-
SUCCEEDED
public static final SharedPrivateLinkResourceProvisioningState SUCCEEDED
Enum value Succeeded.
-
INCOMPLETE
public static final SharedPrivateLinkResourceProvisioningState INCOMPLETE
Enum value Incomplete.
-
-
Method Detail
-
values
public static SharedPrivateLinkResourceProvisioningState[] 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 (SharedPrivateLinkResourceProvisioningState c : SharedPrivateLinkResourceProvisioningState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SharedPrivateLinkResourceProvisioningState 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 SharedPrivateLinkResourceProvisioningState fromString(String value)
Parses a serialized value to a SharedPrivateLinkResourceProvisioningState instance.- Parameters:
value- the serialized value to parse.- Returns:
- the parsed SharedPrivateLinkResourceProvisioningState object, or null if unable to parse.
-
toString
public String toString()
- Overrides:
toStringin classEnum<SharedPrivateLinkResourceProvisioningState>
-
-