public enum CustomizationNetBIOSMode extends Enum<CustomizationNetBIOSMode>
Java class for CustomizationNetBIOSMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CustomizationNetBIOSMode">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="enableNetBIOSViaDhcp"/>
<enumeration value="enableNetBIOS"/>
<enumeration value="disableNetBIOS"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DISABLE_NET_BIOS |
ENABLE_NET_BIOS |
ENABLE_NET_BIOS_VIA_DHCP |
| Modifier and Type | Method and Description |
|---|---|
static CustomizationNetBIOSMode |
fromValue(String v) |
String |
value() |
static CustomizationNetBIOSMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomizationNetBIOSMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomizationNetBIOSMode ENABLE_NET_BIOS_VIA_DHCP
public static final CustomizationNetBIOSMode ENABLE_NET_BIOS
public static final CustomizationNetBIOSMode DISABLE_NET_BIOS
public static CustomizationNetBIOSMode[] values()
for (CustomizationNetBIOSMode c : CustomizationNetBIOSMode.values()) System.out.println(c);
public static CustomizationNetBIOSMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static CustomizationNetBIOSMode fromValue(String v)
Copyright © 2018. All rights reserved.