public enum OsArchType extends Enum<OsArchType>
| Enum Constant and Description |
|---|
AT_6 |
AT_64 |
AT_7 |
AT_86 |
AT_PPC |
AT_UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String[] |
getContains() |
static OsArchType |
of(String osArch) |
String |
toString() |
static OsArchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OsArchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OsArchType AT_86
public static final OsArchType AT_64
public static final OsArchType AT_7
public static final OsArchType AT_6
public static final OsArchType AT_PPC
public static final OsArchType AT_UNKNOWN
public static OsArchType[] values()
for (OsArchType c : OsArchType.values()) System.out.println(c);
public static OsArchType 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[] getContains()
public static OsArchType of(String osArch)
public String toString()
toString in class Enum<OsArchType>Copyright © 2022. All rights reserved.