public enum HostSystem extends Enum<HostSystem>
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(byte hostByte) |
static HostSystem |
findHostSystem(byte hostByte) |
byte |
getHostByte() |
static HostSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostSystem msdos
public static final HostSystem os2
public static final HostSystem win32
public static final HostSystem unix
public static final HostSystem macos
public static final HostSystem beos
public static HostSystem[] values()
for (HostSystem c : HostSystem.values()) System.out.println(c);
public static HostSystem 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 static HostSystem findHostSystem(byte hostByte)
public boolean equals(byte hostByte)
public byte getHostByte()
Copyright © 2017. All rights reserved.