Class ImmutableActivityMetricForm
java.lang.Object
io.jenkins.plugins.trunk.model.event.ImmutableActivityMetricForm
- All Implemented Interfaces:
ActivityMetricForm
@ParametersAreNonnullByDefault
@Generated("org.immutables.processor.ProxyProcessor")
@Immutable
public final class ImmutableActivityMetricForm
extends Object
implements ActivityMetricForm
Immutable implementation of
ActivityMetricForm.
Use the builder to create immutable instances:
ImmutableActivityMetricForm.builder().
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classBuilds instances of typeImmutableActivityMetricForm. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder forImmutableActivityMetricForm.static ImmutableActivityMetricFormcopyOf(ActivityMetricForm instance) Creates an immutable copy of aActivityMetricFormvalue.booleanThis instance is equal to all instances ofImmutableActivityMetricFormthat have equal attribute values.inthashCode()Computes a hash code from attributes:k,v.k()toString()Prints the immutable valueActivityMetricFormwith attribute values.doublev()Copy the current immutable object by setting a value for thekattribute.withV(double value) Copy the current immutable object by setting a value for thevattribute.
-
Method Details
-
k
- Specified by:
kin interfaceActivityMetricForm- Returns:
- The value of the
kattribute
-
v
public double v()- Specified by:
vin interfaceActivityMetricForm- Returns:
- The value of the
vattribute
-
withK
Copy the current immutable object by setting a value for thekattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for k- Returns:
- A modified copy of the
thisobject
-
withV
Copy the current immutable object by setting a value for thevattribute. A value strict bits equality used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for v- Returns:
- A modified copy of the
thisobject
-
equals
This instance is equal to all instances ofImmutableActivityMetricFormthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:k,v. -
toString
Prints the immutable valueActivityMetricFormwith attribute values. -
copyOf
Creates an immutable copy of aActivityMetricFormvalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable ActivityMetricForm instance
-
builder
Creates a builder forImmutableActivityMetricForm.ImmutableActivityMetricForm.builder() .k(String) // requiredk.v(double) // requiredv.build();- Returns:
- A new ImmutableActivityMetricForm builder
-