
com.azure.resourcemanager.network.models.DeleteExistingPeering 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;
/**
* Flag if need to remove current existing peerings.
*/
public final class DeleteExistingPeering extends ExpandableStringEnum {
/**
* Static value False for DeleteExistingPeering.
*/
public static final DeleteExistingPeering FALSE = fromString("False");
/**
* Static value True for DeleteExistingPeering.
*/
public static final DeleteExistingPeering TRUE = fromString("True");
/**
* Creates a new instance of DeleteExistingPeering value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DeleteExistingPeering() {
}
/**
* Creates or finds a DeleteExistingPeering from its string representation.
*
* @param name a name to look for.
* @return the corresponding DeleteExistingPeering.
*/
public static DeleteExistingPeering fromString(String name) {
return fromString(name, DeleteExistingPeering.class);
}
/**
* Gets known DeleteExistingPeering values.
*
* @return known DeleteExistingPeering values.
*/
public static Collection values() {
return values(DeleteExistingPeering.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy