Package jetbrains.buildServer.processes
Enum ProcessTreeTerminatorLinux.LinuxDistroIdentifier
- java.lang.Object
-
- java.lang.Enum<ProcessTreeTerminatorLinux.LinuxDistroIdentifier>
-
- jetbrains.buildServer.processes.ProcessTreeTerminatorLinux.LinuxDistroIdentifier
-
- All Implemented Interfaces:
Serializable
,Comparable<ProcessTreeTerminatorLinux.LinuxDistroIdentifier>
- Enclosing class:
- ProcessTreeTerminatorLinux
public static enum ProcessTreeTerminatorLinux.LinuxDistroIdentifier extends Enum<ProcessTreeTerminatorLinux.LinuxDistroIdentifier>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getReleaseVersionFilename()
static ProcessTreeTerminatorLinux.LinuxDistroIdentifier
parseFromEtcListing(List<String> etcListing)
static ProcessTreeTerminatorLinux.LinuxDistroIdentifier
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProcessTreeTerminatorLinux.LinuxDistroIdentifier[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEBIAN
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier DEBIAN
-
GENTOO
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier GENTOO
-
FEDORA
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier FEDORA
-
MANDRIVA
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier MANDRIVA
-
MANDRAKE
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier MANDRAKE
-
MEEGO
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier MEEGO
-
ARCH
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier ARCH
-
ORACLE
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier ORACLE
-
ENTERPRISE
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier ENTERPRISE
-
OVS
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier OVS
-
VMWARE
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier VMWARE
-
REDHAT
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier REDHAT
-
SUSE
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier SUSE
-
BLUEWHITE64
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier BLUEWHITE64
-
SLAMD64
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier SLAMD64
-
SLACKWARE
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier SLACKWARE
-
ALPINE
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier ALPINE
-
SYSTEM
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier SYSTEM
-
CENTOS
public static final ProcessTreeTerminatorLinux.LinuxDistroIdentifier CENTOS
-
-
Method Detail
-
values
public static ProcessTreeTerminatorLinux.LinuxDistroIdentifier[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProcessTreeTerminatorLinux.LinuxDistroIdentifier c : ProcessTreeTerminatorLinux.LinuxDistroIdentifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessTreeTerminatorLinux.LinuxDistroIdentifier valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
parseFromEtcListing
@Nullable public static ProcessTreeTerminatorLinux.LinuxDistroIdentifier parseFromEtcListing(List<String> etcListing)
-
getReleaseVersionFilename
public String getReleaseVersionFilename()
-
-