com.microsoft.azure.management.network.IpsecEncryption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* 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 IpsecEncryption.
*/
public final class IpsecEncryption extends ExpandableStringEnum {
/** Static value None for IpsecEncryption. */
public static final IpsecEncryption NONE = fromString("None");
/** Static value DES for IpsecEncryption. */
public static final IpsecEncryption DES = fromString("DES");
/** Static value DES3 for IpsecEncryption. */
public static final IpsecEncryption DES3 = fromString("DES3");
/** Static value AES128 for IpsecEncryption. */
public static final IpsecEncryption AES128 = fromString("AES128");
/** Static value AES192 for IpsecEncryption. */
public static final IpsecEncryption AES192 = fromString("AES192");
/** Static value AES256 for IpsecEncryption. */
public static final IpsecEncryption AES256 = fromString("AES256");
/** Static value GCMAES128 for IpsecEncryption. */
public static final IpsecEncryption GCMAES128 = fromString("GCMAES128");
/** Static value GCMAES192 for IpsecEncryption. */
public static final IpsecEncryption GCMAES192 = fromString("GCMAES192");
/** Static value GCMAES256 for IpsecEncryption. */
public static final IpsecEncryption GCMAES256 = fromString("GCMAES256");
/**
* Creates or finds a IpsecEncryption from its string representation.
* @param name a name to look for
* @return the corresponding IpsecEncryption
*/
@JsonCreator
public static IpsecEncryption fromString(String name) {
return fromString(name, IpsecEncryption.class);
}
/**
* @return known IpsecEncryption values
*/
public static Collection values() {
return values(IpsecEncryption.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy