Class ImmutableO365JobTeamResponse
java.lang.Object
com.iland.core.web.rest.response.vbo.ImmutableO365JobTeamResponse
- All Implemented Interfaces:
O365JobTeamResponse
@Generated(from="O365JobTeamResponse",
generator="Immutables")
@ParametersAreNonnullByDefault
@Generated("org.immutables.processor.ProxyProcessor")
@Immutable
@CheckReturnValue
public final class ImmutableO365JobTeamResponse
extends Object
implements O365JobTeamResponse
Immutable implementation of
O365JobTeamResponse.
Use the builder to create immutable instances:
ImmutableO365JobTeamResponse.builder().
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classBuilds instances of typeImmutableO365JobTeamResponse. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder forImmutableO365JobTeamResponse.chats()The chat backup option if applicable.static ImmutableO365JobTeamResponsecopyOf(O365JobTeamResponse instance) Creates an immutable copy of aO365JobTeamResponsevalue.booleanThis instance is equal to all instances ofImmutableO365JobTeamResponsethat have equal attribute values.inthashCode()Computes a hash code from attributes:team,chats.team()The set of O365 Team responses.toString()Prints the immutable valueO365JobTeamResponsewith attribute values.Copy the current immutable object by setting a value for thechatsattribute.withTeam(O365TeamResponse value) Copy the current immutable object by setting a value for theteamattribute.
-
Method Details
-
team
The set of O365 Team responses.- Specified by:
teamin interfaceO365JobTeamResponse
-
chats
The chat backup option if applicable.- Specified by:
chatsin interfaceO365JobTeamResponse
-
withTeam
Copy the current immutable object by setting a value for theteamattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for team- Returns:
- A modified copy of the
thisobject
-
withChats
Copy the current immutable object by setting a value for thechatsattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for chats (can benull)- Returns:
- A modified copy of the
thisobject
-
equals
This instance is equal to all instances ofImmutableO365JobTeamResponsethat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:team,chats. -
toString
Prints the immutable valueO365JobTeamResponsewith attribute values. -
copyOf
Creates an immutable copy of aO365JobTeamResponsevalue. 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 O365JobTeamResponse instance
-
builder
Creates a builder forImmutableO365JobTeamResponse.ImmutableO365JobTeamResponse.builder() .team(com.iland.core.web.rest.response.vbo.O365TeamResponse) // requiredteam.chats(Boolean | null) // nullablechats.build();- Returns:
- A new ImmutableO365JobTeamResponse builder
-