IpVersion.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.compute.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/** Defines values for IpVersion. */
public final class IpVersion extends ExpandableStringEnum<IpVersion> {
    /** Static value IPv4 for IpVersion. */
    public static final IpVersion IPV4 = fromString("IPv4");

    /** Static value IPv6 for IpVersion. */
    public static final IpVersion IPV6 = fromString("IPv6");

    /**
     * Creates or finds a IpVersion from its string representation.
     *
     * @param name a name to look for.
     * @return the corresponding IpVersion.
     */
    @JsonCreator
    public static IpVersion fromString(String name) {
        return fromString(name, IpVersion.class);
    }

    /** @return known IpVersion values. */
    public static Collection<IpVersion> values() {
        return values(IpVersion.class);
    }
}