public enum ResourceIdentityType extends Enum<ResourceIdentityType>
| Enum Constant and Description |
|---|
SYSTEM_ASSIGNED
Enum value SystemAssigned.
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceIdentityType |
fromString(String value)
Parses a serialized value to a ResourceIdentityType instance.
|
String |
toString() |
static ResourceIdentityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceIdentityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceIdentityType SYSTEM_ASSIGNED
public static ResourceIdentityType[] values()
for (ResourceIdentityType c : ResourceIdentityType.values()) System.out.println(c);
public static ResourceIdentityType 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 ResourceIdentityType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<ResourceIdentityType>Copyright © 2019. All rights reserved.