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