![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.network.models.ExpressRouteLinkMacSecSciState Maven / Gradle / Ivy
// 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 java.util.Collection;
/**
* Sci mode enabled/disabled.
*/
public final class ExpressRouteLinkMacSecSciState extends ExpandableStringEnum {
/**
* Static value Disabled for ExpressRouteLinkMacSecSciState.
*/
public static final ExpressRouteLinkMacSecSciState DISABLED = fromString("Disabled");
/**
* Static value Enabled for ExpressRouteLinkMacSecSciState.
*/
public static final ExpressRouteLinkMacSecSciState ENABLED = fromString("Enabled");
/**
* Creates a new instance of ExpressRouteLinkMacSecSciState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ExpressRouteLinkMacSecSciState() {
}
/**
* Creates or finds a ExpressRouteLinkMacSecSciState from its string representation.
*
* @param name a name to look for.
* @return the corresponding ExpressRouteLinkMacSecSciState.
*/
public static ExpressRouteLinkMacSecSciState fromString(String name) {
return fromString(name, ExpressRouteLinkMacSecSciState.class);
}
/**
* Gets known ExpressRouteLinkMacSecSciState values.
*
* @return known ExpressRouteLinkMacSecSciState values.
*/
public static Collection values() {
return values(ExpressRouteLinkMacSecSciState.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy