public enum LinuxPkgManagerCommand extends Enum<LinuxPkgManagerCommand>
| Enum Constant and Description |
|---|
ALPINE |
ARCH_LINUX |
DEBIAN |
RPM |
| Modifier and Type | Method and Description |
|---|---|
String |
getCommand() |
static LinuxPkgManagerCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinuxPkgManagerCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinuxPkgManagerCommand DEBIAN
public static final LinuxPkgManagerCommand RPM
public static final LinuxPkgManagerCommand ALPINE
public static final LinuxPkgManagerCommand ARCH_LINUX
public static LinuxPkgManagerCommand[] values()
for (LinuxPkgManagerCommand c : LinuxPkgManagerCommand.values()) System.out.println(c);
public static LinuxPkgManagerCommand 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 getCommand()
Copyright © 2014–2020 Checkmarx. All rights reserved.