com.azure.resourcemanager.network.models.DhGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// 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;
/**
* The DH Groups used in IKE Phase 1 for initial SA.
*/
public final class DhGroup extends ExpandableStringEnum {
/**
* Static value None for DhGroup.
*/
public static final DhGroup NONE = fromString("None");
/**
* Static value DHGroup1 for DhGroup.
*/
public static final DhGroup DHGROUP1 = fromString("DHGroup1");
/**
* Static value DHGroup2 for DhGroup.
*/
public static final DhGroup DHGROUP2 = fromString("DHGroup2");
/**
* Static value DHGroup14 for DhGroup.
*/
public static final DhGroup DHGROUP14 = fromString("DHGroup14");
/**
* Static value DHGroup2048 for DhGroup.
*/
public static final DhGroup DHGROUP2048 = fromString("DHGroup2048");
/**
* Static value ECP256 for DhGroup.
*/
public static final DhGroup ECP256 = fromString("ECP256");
/**
* Static value ECP384 for DhGroup.
*/
public static final DhGroup ECP384 = fromString("ECP384");
/**
* Static value DHGroup24 for DhGroup.
*/
public static final DhGroup DHGROUP24 = fromString("DHGroup24");
/**
* Creates a new instance of DhGroup value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DhGroup() {
}
/**
* Creates or finds a DhGroup from its string representation.
*
* @param name a name to look for.
* @return the corresponding DhGroup.
*/
@JsonCreator
public static DhGroup fromString(String name) {
return fromString(name, DhGroup.class);
}
/**
* Gets known DhGroup values.
*
* @return known DhGroup values.
*/
public static Collection values() {
return values(DhGroup.class);
}
}