![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostInternetScsiHbaStaticTargetTargetDiscoveryMethod Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostInternetScsiHbaStaticTargetTargetDiscoveryMethod.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="HostInternetScsiHbaStaticTargetTargetDiscoveryMethod">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="staticMethod"/>
* <enumeration value="sendTargetMethod"/>
* <enumeration value="slpMethod"/>
* <enumeration value="isnsMethod"/>
* <enumeration value="unknownMethod"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "HostInternetScsiHbaStaticTargetTargetDiscoveryMethod")
@XmlEnum
public enum HostInternetScsiHbaStaticTargetTargetDiscoveryMethod {
@XmlEnumValue("staticMethod")
STATIC_METHOD("staticMethod"),
@XmlEnumValue("sendTargetMethod")
SEND_TARGET_METHOD("sendTargetMethod"),
@XmlEnumValue("slpMethod")
SLP_METHOD("slpMethod"),
@XmlEnumValue("isnsMethod")
ISNS_METHOD("isnsMethod"),
@XmlEnumValue("unknownMethod")
UNKNOWN_METHOD("unknownMethod");
private final String value;
HostInternetScsiHbaStaticTargetTargetDiscoveryMethod(String v) {
value = v;
}
public String value() {
return value;
}
public static HostInternetScsiHbaStaticTargetTargetDiscoveryMethod fromValue(String v) {
for (HostInternetScsiHbaStaticTargetTargetDiscoveryMethod c: HostInternetScsiHbaStaticTargetTargetDiscoveryMethod.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy