Serializable, Comparable<Wrapper.DistributionType>public static enum Wrapper.DistributionType extends Enum<Wrapper.DistributionType>
| Enum Constant | Description | 
|---|---|
| ALL | complete Gradle distribution with binaries, sources and documentation | 
| BIN | binary-only Gradle distribution without sources and documentation | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static Wrapper.DistributionType | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static Wrapper.DistributionType[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Wrapper.DistributionType BIN
public static final Wrapper.DistributionType ALL
public static Wrapper.DistributionType[] values()
for (Wrapper.DistributionType c : Wrapper.DistributionType.values()) System.out.println(c);
public static Wrapper.DistributionType 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 null