PreferredIpVersion.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for PreferredIpVersion. */
public final class PreferredIpVersion extends ExpandableStringEnum<PreferredIpVersion> {
/** Static value IPv4 for PreferredIpVersion. */
public static final PreferredIpVersion IPV4 = fromString("IPv4");
/** Static value IPv6 for PreferredIpVersion. */
public static final PreferredIpVersion IPV6 = fromString("IPv6");
/**
* Creates or finds a PreferredIpVersion from its string representation.
*
* @param name a name to look for.
* @return the corresponding PreferredIpVersion.
*/
@JsonCreator
public static PreferredIpVersion fromString(String name) {
return fromString(name, PreferredIpVersion.class);
}
/** @return known PreferredIpVersion values. */
public static Collection<PreferredIpVersion> values() {
return values(PreferredIpVersion.class);
}
}