![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.securityinsights.models.RegistryHive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-securityinsights Show documentation
Show all versions of azure-resourcemanager-securityinsights Show documentation
This package contains Microsoft Azure SDK for SecurityInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider. Package tag package-preview-2021-09.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.securityinsights.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* the hive that holds the registry key.
*/
public final class RegistryHive extends ExpandableStringEnum {
/**
* Static value HKEY_LOCAL_MACHINE for RegistryHive.
*/
public static final RegistryHive HKEY_LOCAL_MACHINE = fromString("HKEY_LOCAL_MACHINE");
/**
* Static value HKEY_CLASSES_ROOT for RegistryHive.
*/
public static final RegistryHive HKEY_CLASSES_ROOT = fromString("HKEY_CLASSES_ROOT");
/**
* Static value HKEY_CURRENT_CONFIG for RegistryHive.
*/
public static final RegistryHive HKEY_CURRENT_CONFIG = fromString("HKEY_CURRENT_CONFIG");
/**
* Static value HKEY_USERS for RegistryHive.
*/
public static final RegistryHive HKEY_USERS = fromString("HKEY_USERS");
/**
* Static value HKEY_CURRENT_USER_LOCAL_SETTINGS for RegistryHive.
*/
public static final RegistryHive HKEY_CURRENT_USER_LOCAL_SETTINGS = fromString("HKEY_CURRENT_USER_LOCAL_SETTINGS");
/**
* Static value HKEY_PERFORMANCE_DATA for RegistryHive.
*/
public static final RegistryHive HKEY_PERFORMANCE_DATA = fromString("HKEY_PERFORMANCE_DATA");
/**
* Static value HKEY_PERFORMANCE_NLSTEXT for RegistryHive.
*/
public static final RegistryHive HKEY_PERFORMANCE_NLSTEXT = fromString("HKEY_PERFORMANCE_NLSTEXT");
/**
* Static value HKEY_PERFORMANCE_TEXT for RegistryHive.
*/
public static final RegistryHive HKEY_PERFORMANCE_TEXT = fromString("HKEY_PERFORMANCE_TEXT");
/**
* Static value HKEY_A for RegistryHive.
*/
public static final RegistryHive HKEY_A = fromString("HKEY_A");
/**
* Static value HKEY_CURRENT_USER for RegistryHive.
*/
public static final RegistryHive HKEY_CURRENT_USER = fromString("HKEY_CURRENT_USER");
/**
* Creates a new instance of RegistryHive value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public RegistryHive() {
}
/**
* Creates or finds a RegistryHive from its string representation.
*
* @param name a name to look for.
* @return the corresponding RegistryHive.
*/
public static RegistryHive fromString(String name) {
return fromString(name, RegistryHive.class);
}
/**
* Gets known RegistryHive values.
*
* @return known RegistryHive values.
*/
public static Collection values() {
return values(RegistryHive.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy