Class ImmutableTeamCreate

  • All Implemented Interfaces:
    TeamCreate

    @ParametersAreNonnullByDefault
    @Generated("org.immutables.processor.ProxyProcessor")
    @Immutable
    @CheckReturnValue
    public final class ImmutableTeamCreate
    extends Object
    implements TeamCreate
    Immutable implementation of TeamCreate.

    Use the builder to create immutable instances: ImmutableTeamCreate.builder().

    • Method Detail

      • name

        @Nullable
        public String name()
        The name of the team.
        Specified by:
        name in interface TeamCreate
      • maintainers

        public Optional<String> maintainers()
        List GitHub IDs for organization members who will become team maintainers.
        Specified by:
        maintainers in interface TeamCreate
      • repo_names

        public Optional<String> repo_names()
        The full name (e.g., "organization-name/repository-name") of repositories to add the team to.
        Specified by:
        repo_names in interface TeamCreate
      • withName

        public final ImmutableTeamCreate withName​(@Nullable
                                                  String value)
        Copy the current immutable object by setting a value for the name attribute. An equals check used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for name (can be null)
        Returns:
        A modified copy of the this object
      • withDescription

        public final ImmutableTeamCreate withDescription​(String value)
        Copy the current immutable object by setting a present value for the optional description attribute.
        Parameters:
        value - The value for description
        Returns:
        A modified copy of this object
      • withDescription

        public final ImmutableTeamCreate withDescription​(Optional<String> optional)
        Copy the current immutable object by setting an optional value for the description attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for description
        Returns:
        A modified copy of this object
      • withMaintainers

        public final ImmutableTeamCreate withMaintainers​(String value)
        Copy the current immutable object by setting a present value for the optional maintainers attribute.
        Parameters:
        value - The value for maintainers
        Returns:
        A modified copy of this object
      • withMaintainers

        public final ImmutableTeamCreate withMaintainers​(Optional<String> optional)
        Copy the current immutable object by setting an optional value for the maintainers attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for maintainers
        Returns:
        A modified copy of this object
      • withRepo_names

        public final ImmutableTeamCreate withRepo_names​(String value)
        Copy the current immutable object by setting a present value for the optional repo_names attribute.
        Parameters:
        value - The value for repo_names
        Returns:
        A modified copy of this object
      • withRepo_names

        public final ImmutableTeamCreate withRepo_names​(Optional<String> optional)
        Copy the current immutable object by setting an optional value for the repo_names attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for repo_names
        Returns:
        A modified copy of this object
      • withParent_team_id

        public final ImmutableTeamCreate withParent_team_id​(String value)
        Copy the current immutable object by setting a present value for the optional parent_team_id attribute.
        Parameters:
        value - The value for parent_team_id
        Returns:
        A modified copy of this object
      • withParent_team_id

        public final ImmutableTeamCreate withParent_team_id​(Optional<String> optional)
        Copy the current immutable object by setting an optional value for the parent_team_id attribute. An equality check is used on inner nullable value to prevent copying of the same value by returning this.
        Parameters:
        optional - A value for parent_team_id
        Returns:
        A modified copy of this object
      • equals

        public boolean equals​(@Nullable
                              Object another)
        This instance is equal to all instances of ImmutableTeamCreate that have equal attribute values.
        Overrides:
        equals in class Object
        Returns:
        true if this is equal to another instance
      • hashCode

        public int hashCode()
        Computes a hash code from attributes: name, description, maintainers, repo_names, parent_team_id.
        Overrides:
        hashCode in class Object
        Returns:
        hashCode value
      • toString

        public String toString()
        Prints the immutable value TeamCreate with attribute values.
        Overrides:
        toString in class Object
        Returns:
        A string representation of the value
      • copyOf

        public static ImmutableTeamCreate copyOf​(TeamCreate instance)
        Creates an immutable copy of a TeamCreate 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 TeamCreate instance