com.azure.resourcemanager.monitor.models.KnownLogFilesDataSourceFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-monitor Show documentation
Show all versions of azure-resourcemanager-monitor Show documentation
This package contains Microsoft Azure Monitor SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.monitor.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The data format of the log files.
*/
public final class KnownLogFilesDataSourceFormat extends ExpandableStringEnum {
/**
* Static value text for KnownLogFilesDataSourceFormat.
*/
public static final KnownLogFilesDataSourceFormat TEXT = fromString("text");
/**
* Creates a new instance of KnownLogFilesDataSourceFormat value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public KnownLogFilesDataSourceFormat() {
}
/**
* Creates or finds a KnownLogFilesDataSourceFormat from its string representation.
*
* @param name a name to look for.
* @return the corresponding KnownLogFilesDataSourceFormat.
*/
public static KnownLogFilesDataSourceFormat fromString(String name) {
return fromString(name, KnownLogFilesDataSourceFormat.class);
}
/**
* Gets known KnownLogFilesDataSourceFormat values.
*
* @return known KnownLogFilesDataSourceFormat values.
*/
public static Collection values() {
return values(KnownLogFilesDataSourceFormat.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy