![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostSnmpAgentCapability Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostSnmpAgentCapability.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="HostSnmpAgentCapability">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="COMPLETE"/>
* <enumeration value="DIAGNOSTICS"/>
* <enumeration value="CONFIGURATION"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "HostSnmpAgentCapability")
@XmlEnum
public enum HostSnmpAgentCapability {
COMPLETE,
DIAGNOSTICS,
CONFIGURATION;
public String value() {
return name();
}
public static HostSnmpAgentCapability fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy