Class ImmutableActivityTimestampForm
java.lang.Object
io.jenkins.plugins.trunk.model.event.ImmutableActivityTimestampForm
- All Implemented Interfaces:
ActivityTimestampForm
@ParametersAreNonnullByDefault
@Generated("org.immutables.processor.ProxyProcessor")
@Immutable
public final class ImmutableActivityTimestampForm
extends Object
implements ActivityTimestampForm
Immutable implementation of
ActivityTimestampForm
.
Use the builder to create immutable instances:
ImmutableActivityTimestampForm.builder()
.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Builds instances of typeImmutableActivityTimestampForm
. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Creates a builder forImmutableActivityTimestampForm
.copyOf
(ActivityTimestampForm instance) Creates an immutable copy of aActivityTimestampForm
value.boolean
This instance is equal to all instances ofImmutableActivityTimestampForm
that have equal attribute values.int
hashCode()
Computes a hash code from attributes:k
,v
.k()
toString()
Prints the immutable valueActivityTimestampForm
with attribute values.v()
Copy the current immutable object by setting a value for thek
attribute.Copy the current immutable object by setting a value for thev
attribute.
-
Method Details
-
k
- Specified by:
k
in interfaceActivityTimestampForm
- Returns:
- The value of the
k
attribute
-
v
- Specified by:
v
in interfaceActivityTimestampForm
- Returns:
- The value of the
v
attribute
-
withK
Copy the current immutable object by setting a value for thek
attribute. 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
this
object
-
withV
Copy the current immutable object by setting a value for thev
attribute. An equals check used to prevent copying of the same value by returningthis
.- Parameters:
value
- A new value for v- Returns:
- A modified copy of the
this
object
-
equals
This instance is equal to all instances ofImmutableActivityTimestampForm
that have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:k
,v
. -
toString
Prints the immutable valueActivityTimestampForm
with attribute values. -
copyOf
Creates an immutable copy of aActivityTimestampForm
value. 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 ActivityTimestampForm instance
-
builder
Creates a builder forImmutableActivityTimestampForm
.ImmutableActivityTimestampForm.builder() .k(String) // required
k
.v(Long) // requiredv
.build();- Returns:
- A new ImmutableActivityTimestampForm builder
-