java.lang.Object
org.kohsuke.github.GHRepositoryVariableBuilder<GHRepositoryVariable.Creator>
org.kohsuke.github.GHRepositoryVariable.Creator
- All Implemented Interfaces:
GitHubRequestBuilderDone<GHRepositoryVariable>
- Enclosing class:
- GHRepositoryVariable
@BetaApi
public static class GHRepositoryVariable.Creator
extends GHRepositoryVariableBuilder<GHRepositoryVariable.Creator>
A
GHRepositoryVariableBuilder
that creates a new GHRepositoryVariable
Consumer must call GitHubRequestBuilderDone.done()
to create the new instance.
-
Field Summary
Modifier and TypeFieldDescriptionprotected final org.kohsuke.github.Requester
The requester.protected boolean
The update in place. -
Method Summary
Modifier and TypeMethodDescriptionprotected GHRepositoryVariable.Creator
Chooses whether to return a continuing builder or an updated data record IfAbstractBuilder
is the same asAbstractBuilder
, this method will commit changes after the first value change and return aAbstractBuilder
fromGitHubRequestBuilderDone.done()
.done()
Finishes a create or update request, committing changes.protected GHRepositoryVariable.Creator
Applies a value to a name for this builder.Methods inherited from class org.kohsuke.github.GHRepositoryVariableBuilder
name, value
-
Field Details
-
requester
@Nonnull protected final org.kohsuke.github.Requester requesterThe requester. -
updateInPlace
protected boolean updateInPlaceThe update in place.
-
-
Method Details
-
done
Finishes a create or update request, committing changes. This method may update-in-place or not. Either way it returns the resulting instance.- Specified by:
done
in interfaceGitHubRequestBuilderDone<R>
- Returns:
- an instance with updated current data
- Throws:
IOException
- if there is an I/O Exception
-
with
@Nonnull @BetaApi protected GHRepositoryVariable.Creator with(@Nonnull String name, Object value) throws IOException Applies a value to a name for this builder. IfAbstractBuilder
is the same asAbstractBuilder
, this method will commit changes after the first value change and return aAbstractBuilder
fromGitHubRequestBuilderDone.done()
. IfAbstractBuilder
is not the same asAbstractBuilder
, this method will return anAbstractBuilder
and letting the caller batch together multiple changes and callGitHubRequestBuilderDone.done()
when they are ready.- Parameters:
name
- the name of the fieldvalue
- the value of the field- Returns:
- either a continuing builder or an updated data record
- Throws:
IOException
- if an I/O error occurs
-
continueOrDone
Chooses whether to return a continuing builder or an updated data record IfAbstractBuilder
is the same asAbstractBuilder
, this method will commit changes after the first value change and return aAbstractBuilder
fromGitHubRequestBuilderDone.done()
. IfAbstractBuilder
is not the same asAbstractBuilder
, this method will return anAbstractBuilder
and letting the caller batch together multiple changes and callGitHubRequestBuilderDone.done()
when they are ready.- Returns:
- either a continuing builder or an updated data record
- Throws:
IOException
- if an I/O error occurs
-