@Generated(value="org.immutables.processor.ProxyProcessor") public final class Buildpack extends Object
_Buildpack.
Use the builder to create immutable instances:
Buildpack.builder().
| Modifier and Type | Class and Description |
|---|---|
static class |
Buildpack.Builder
Builds instances of type
Buildpack. |
| Modifier and Type | Method and Description |
|---|---|
static Buildpack.Builder |
builder()
Creates a builder for
Buildpack. |
boolean |
equals(Object another)
This instance is equal to all instances of
Buildpack that have equal attribute values. |
String |
getBuildpackName()
The name reported by buildpack
|
String |
getDetectOutput()
The output during buildpack detect process
|
String |
getName()
The system buildpack name
|
String |
getVersion()
The version of the buildpack
|
int |
hashCode()
Computes a hash code from attributes:
buildpackName, detectOutput, name, version. |
String |
toString()
Prints the immutable value
Buildpack with attribute values. |
public String getBuildpackName()
public String getDetectOutput()
public String getName()
public String getVersion()
public boolean equals(Object another)
Buildpack that have equal attribute values.public int hashCode()
buildpackName, detectOutput, name, version.public String toString()
Buildpack with attribute values.public static Buildpack.Builder builder()
Buildpack.
Buildpack.builder()
.buildpackName(String | null) // nullable buildpackName
.detectOutput(String | null) // nullable detectOutput
.name(String) // required name
.version(String | null) // nullable version
.build();
Copyright © 2020. All rights reserved.