org.mitre.maec.default_vocabularies_1.GUIActionNameEnum10 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
The newest version!
/**
* 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.07.01 at 03:19:53 PM 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 GUIActionNameEnum-1.0.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="GUIActionNameEnum-1.0">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="create window"/>
* <enumeration value="kill window"/>
* <enumeration value="create dialog box"/>
* <enumeration value="enumerate windows"/>
* <enumeration value="find window"/>
* <enumeration value="hide window"/>
* <enumeration value="show window"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "GUIActionNameEnum-1.0")
@XmlEnum
public enum GUIActionNameEnum10 {
/**
* The 'create window' value specifies the defined action of creating a new window.
*
*/
@XmlEnumValue("create window")
CREATE_WINDOW("create window"),
/**
* The 'kill window' value specifies the defined action of killing an existing window.
*
*/
@XmlEnumValue("kill window")
KILL_WINDOW("kill window"),
/**
* The 'create dialog box' value specifies the defined action of creating a new dialog box.
*
*/
@XmlEnumValue("create dialog box")
CREATE_DIALOG_BOX("create dialog box"),
/**
* The 'enumerate windows' value specifies the defined action of enumerating all open windows.
*
*/
@XmlEnumValue("enumerate windows")
ENUMERATE_WINDOWS("enumerate windows"),
/**
* The 'find window' value specifies the defined action of search for a particular window.
*
*/
@XmlEnumValue("find window")
FIND_WINDOW("find window"),
/**
* The 'hide window' value specifies the defined action of hiding an existing window.
*
*/
@XmlEnumValue("hide window")
HIDE_WINDOW("hide window"),
/**
* The 'show window' value specifies the defined action of showing an existing window.
*
*/
@XmlEnumValue("show window")
SHOW_WINDOW("show window");
private final String value;
GUIActionNameEnum10(String v) {
value = v;
}
public String value() {
return value;
}
public static GUIActionNameEnum10 fromValue(String v) {
for (GUIActionNameEnum10 c : GUIActionNameEnum10.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}