Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.network; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.LangDefinition; import java.util.Collection; import java.util.HashMap; import java.util.Map;
Defines values for LoadBalancerSkuType.
/** * Defines values for LoadBalancerSkuType. */
@LangDefinition(ContainerName = "/Microsoft.Azure.Management.Network.Fluent.Models") @Beta(Beta.SinceVersion.V1_3_0) public final class LoadBalancerSkuType { // This needs to be at the beginning for the initialization to happen correctly private static final Map<String, LoadBalancerSkuType> VALUES_BY_NAME = new HashMap<>();
Static value Basic for LoadBalancerSkuType.
/** Static value Basic for LoadBalancerSkuType. */
public static final LoadBalancerSkuType BASIC = new LoadBalancerSkuType(LoadBalancerSkuName.BASIC);
Static value Standard for LoadBalancerSkuType.
/** Static value Standard for LoadBalancerSkuType. */
public static final LoadBalancerSkuType STANDARD = new LoadBalancerSkuType(LoadBalancerSkuName.STANDARD);
The actual serialized value for a LoadBalancerSkuType instance.
/** The actual serialized value for a LoadBalancerSkuType instance. */
private LoadBalancerSkuName skuName;
Returns:predefined LoadBalancer SKU types
/** * @return predefined LoadBalancer SKU types */
public static LoadBalancerSkuType[] values() { Collection<LoadBalancerSkuType> valuesCollection = VALUES_BY_NAME.values(); return valuesCollection.toArray(new LoadBalancerSkuType[valuesCollection.size()]); }
Creates a LoadBalancerSkuType from sku name.
Params:
  • skuName – the sku name
/** * Creates a LoadBalancerSkuType from sku name. * @param skuName the sku name */
private LoadBalancerSkuType(LoadBalancerSkuName skuName) { this.skuName = skuName; if (skuName != null) { VALUES_BY_NAME.put(skuName.toString().toLowerCase(), this); } }
Parses a value into a SKU type and creates a new LoadBalancerSkuType instance if not found among the existing ones.
Params:
  • lbSku – a sku
Returns:the LoadBalancerSkuType
/** * Parses a value into a SKU type and creates a new LoadBalancerSkuType instance if not * found among the existing ones. * * @param lbSku a sku * @return the LoadBalancerSkuType */
public static LoadBalancerSkuType fromSku(LoadBalancerSku lbSku) { if (lbSku == null) { return null; } if (lbSku.name() == null) { return null; } LoadBalancerSkuType result = VALUES_BY_NAME.get(lbSku.name().toString().toLowerCase()); if (result != null) { return result; } else { return new LoadBalancerSkuType(lbSku.name()); } }
Returns:the LoadBalancerSku associated with the LoadBalancerSkuType.
/** * @return the LoadBalancerSku associated with the LoadBalancerSkuType. */
public LoadBalancerSku sku() { return (new LoadBalancerSku()).withName(this.skuName); } @Override public int hashCode() { return skuName.hashCode(); } @Override public boolean equals(Object obj) { if (!(obj instanceof LoadBalancerSkuType)) { return false; } else if (obj == this) { return true; } else if (skuName == null) { return ((LoadBalancerSkuType) obj).skuName == null; } else { return skuName.equals(((LoadBalancerSkuType) obj).skuName); } } }