@Generated(value="org.immutables.processor.ProxyProcessor") public final class Process extends Object
_Process.
Use the builder to create immutable instances:
Process.builder().
| Modifier and Type | Class and Description |
|---|---|
static class |
Process.Builder
Builds instances of type
Process. |
| Modifier and Type | Method and Description |
|---|---|
static Process.Builder |
builder()
Creates a builder for
Process. |
boolean |
equals(Object another)
This instance is equal to all instances of
Process that have equal attribute values. |
String |
getId()
The process' id
|
String |
getType()
The process' type
|
int |
hashCode()
Computes a hash code from attributes:
id, type. |
String |
toString()
Prints the immutable value
Process with attribute values. |
public String getId()
public String getType()
public boolean equals(Object another)
Process that have equal attribute values.public int hashCode()
id, type.public String toString()
Process with attribute values.public static Process.Builder builder()
Process.
Process.builder()
.id(String) // required id
.type(String) // required type
.build();
Copyright © 2020. All rights reserved.