public enum DependencyClass extends Enum<DependencyClass>
| Enum Constant and Description |
|---|
COMMON
The interface is common to all Solaris systems regardless of the
underlying hardware.
|
CPU
The interface is specific to the CPU model of the current system.
|
GROUP
The interface is specific to the hardware platform group of the
current system.
|
ISA
The interface is specific to the instruction set architecture (ISA)
supported by the microprocessors on this system.
|
PLATFORM
The interface is specific to the hardware platform of the current
system.
|
UNKNOWN
The interface has an unknown set of architectural dependencies.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getEncoding() |
String |
toDisplayString() |
static DependencyClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependencyClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependencyClass UNKNOWN
public static final DependencyClass CPU
public static final DependencyClass PLATFORM
public static final DependencyClass GROUP
public static final DependencyClass ISA
public static final DependencyClass COMMON
public static DependencyClass[] values()
for (DependencyClass c : DependencyClass.values()) System.out.println(c);
public static DependencyClass 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 toDisplayString()
public int getEncoding()
Copyright © 2012. All Rights Reserved.