VerbosityLevel.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.network.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for VerbosityLevel. */
public final class VerbosityLevel extends ExpandableStringEnum<VerbosityLevel> {
/** Static value Normal for VerbosityLevel. */
public static final VerbosityLevel NORMAL = fromString("Normal");
/** Static value Minimum for VerbosityLevel. */
public static final VerbosityLevel MINIMUM = fromString("Minimum");
/** Static value Full for VerbosityLevel. */
public static final VerbosityLevel FULL = fromString("Full");
/**
* Creates or finds a VerbosityLevel from its string representation.
*
* @param name a name to look for.
* @return the corresponding VerbosityLevel.
*/
@JsonCreator
public static VerbosityLevel fromString(String name) {
return fromString(name, VerbosityLevel.class);
}
/** @return known VerbosityLevel values. */
public static Collection<VerbosityLevel> values() {
return values(VerbosityLevel.class);
}
}