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