Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.network; import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; import com.microsoft.rest.ExpandableStringEnum;
Defines values for AzureFirewallNatRCActionType.
/** * Defines values for AzureFirewallNatRCActionType. */
public final class AzureFirewallNatRCActionType extends ExpandableStringEnum<AzureFirewallNatRCActionType> {
Static value Snat for AzureFirewallNatRCActionType.
/** Static value Snat for AzureFirewallNatRCActionType. */
public static final AzureFirewallNatRCActionType SNAT = fromString("Snat");
Static value Dnat for AzureFirewallNatRCActionType.
/** Static value Dnat for AzureFirewallNatRCActionType. */
public static final AzureFirewallNatRCActionType DNAT = fromString("Dnat");
Creates or finds a AzureFirewallNatRCActionType from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding AzureFirewallNatRCActionType
/** * Creates or finds a AzureFirewallNatRCActionType from its string representation. * @param name a name to look for * @return the corresponding AzureFirewallNatRCActionType */
@JsonCreator public static AzureFirewallNatRCActionType fromString(String name) { return fromString(name, AzureFirewallNatRCActionType.class); }
Returns:known AzureFirewallNatRCActionType values
/** * @return known AzureFirewallNatRCActionType values */
public static Collection<AzureFirewallNatRCActionType> values() { return values(AzureFirewallNatRCActionType.class); } }