public enum BinPlatform extends Enum<BinPlatform>
| Enum Constant and Description |
|---|
LINUX32 |
LINUX64 |
MAC64 |
WINDOWS32 |
WINDOWS64 |
| Modifier and Type | Method and Description |
|---|---|
String |
id() |
static BinPlatform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinPlatform LINUX32
public static final BinPlatform LINUX64
public static final BinPlatform WINDOWS32
public static final BinPlatform WINDOWS64
public static final BinPlatform MAC64
public static BinPlatform[] values()
for (BinPlatform c : BinPlatform.values()) System.out.println(c);
public static BinPlatform 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 id()
Copyright © 2026 vpc open source initiative. All rights reserved.