org.mitre.maec.default_vocabularies_1.RegistryActionNameEnum10 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stix Show documentation
Show all versions of stix Show documentation
The Java bindings for STIX v.1.2.0.2
/**
* Copyright (c) 2015, The MITRE Corporation. All rights reserved.
* See LICENSE for complete terms.
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.06.23 at 10:59:44 AM EDT
//
package org.mitre.maec.default_vocabularies_1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RegistryActionNameEnum-1.0.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RegistryActionNameEnum-1.0">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="create registry key"/>
* <enumeration value="delete registry key"/>
* <enumeration value="open registry key"/>
* <enumeration value="close registry key"/>
* <enumeration value="create registry key value"/>
* <enumeration value="delete registry key value"/>
* <enumeration value="enumerate registry key subkeys"/>
* <enumeration value="enumerate registry key values"/>
* <enumeration value="get registry key attributes"/>
* <enumeration value="read registry key value"/>
* <enumeration value="modify registry key value"/>
* <enumeration value="modify registry key"/>
* <enumeration value="monitor registry key"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RegistryActionNameEnum-1.0")
@XmlEnum
public enum RegistryActionNameEnum10 {
/**
* Windows-specific.
*
*/
@XmlEnumValue("create registry key")
CREATE_REGISTRY_KEY("create registry key"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("delete registry key")
DELETE_REGISTRY_KEY("delete registry key"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("open registry key")
OPEN_REGISTRY_KEY("open registry key"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("close registry key")
CLOSE_REGISTRY_KEY("close registry key"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("create registry key value")
CREATE_REGISTRY_KEY_VALUE("create registry key value"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("delete registry key value")
DELETE_REGISTRY_KEY_VALUE("delete registry key value"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("enumerate registry key subkeys")
ENUMERATE_REGISTRY_KEY_SUBKEYS("enumerate registry key subkeys"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("enumerate registry key values")
ENUMERATE_REGISTRY_KEY_VALUES("enumerate registry key values"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("get registry key attributes")
GET_REGISTRY_KEY_ATTRIBUTES("get registry key attributes"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("read registry key value")
READ_REGISTRY_KEY_VALUE("read registry key value"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("modify registry key value")
MODIFY_REGISTRY_KEY_VALUE("modify registry key value"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("modify registry key")
MODIFY_REGISTRY_KEY("modify registry key"),
/**
* Windows-specific.
*
*/
@XmlEnumValue("monitor registry key")
MONITOR_REGISTRY_KEY("monitor registry key");
private final String value;
RegistryActionNameEnum10(String v) {
value = v;
}
public String value() {
return value;
}
public static RegistryActionNameEnum10 fromValue(String v) {
for (RegistryActionNameEnum10 c : RegistryActionNameEnum10.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}