public enum LinuxDistribution extends Enum<LinuxDistribution> implements Distribution
| Modifier and Type | Method and Description |
|---|---|
List<Peculiarity<?>> |
pecularities() |
static LinuxDistribution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinuxDistribution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
List<? extends Version> |
versions() |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfasListpublic static final LinuxDistribution Ubuntu
public static final LinuxDistribution CentOS
public static LinuxDistribution[] values()
for (LinuxDistribution c : LinuxDistribution.values()) System.out.println(c);
public static LinuxDistribution 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 List<Peculiarity<?>> pecularities()
pecularities in interface HasPecularitiespublic List<? extends Version> versions()
versions in interface DistributionCopyright © 2021. All rights reserved.