Package com.google.gerrit.entities
Class StoredCommentLinkInfo.Builder
- java.lang.Object
-
- com.google.gerrit.entities.StoredCommentLinkInfo.Builder
-
- Enclosing class:
- StoredCommentLinkInfo
public abstract static class StoredCommentLinkInfo.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract StoredCommentLinkInfo
autoBuild()
StoredCommentLinkInfo
build()
protected abstract String
getLink()
protected abstract String
getMatch()
protected abstract String
getName()
protected abstract boolean
getOverrideOnly()
protected abstract String
getPrefix()
protected abstract String
getSuffix()
protected abstract String
getText()
abstract StoredCommentLinkInfo.Builder
setEnabled(Boolean value)
abstract StoredCommentLinkInfo.Builder
setLink(String value)
abstract StoredCommentLinkInfo.Builder
setMatch(String value)
abstract StoredCommentLinkInfo.Builder
setName(String value)
abstract StoredCommentLinkInfo.Builder
setOverrideOnly(boolean value)
abstract StoredCommentLinkInfo.Builder
setPrefix(String value)
abstract StoredCommentLinkInfo.Builder
setSuffix(String value)
abstract StoredCommentLinkInfo.Builder
setText(String value)
-
-
-
Method Detail
-
setName
public abstract StoredCommentLinkInfo.Builder setName(String value)
-
setMatch
public abstract StoredCommentLinkInfo.Builder setMatch(String value)
-
setLink
public abstract StoredCommentLinkInfo.Builder setLink(String value)
-
setPrefix
public abstract StoredCommentLinkInfo.Builder setPrefix(String value)
-
setSuffix
public abstract StoredCommentLinkInfo.Builder setSuffix(String value)
-
setText
public abstract StoredCommentLinkInfo.Builder setText(String value)
-
setEnabled
public abstract StoredCommentLinkInfo.Builder setEnabled(Boolean value)
-
setOverrideOnly
public abstract StoredCommentLinkInfo.Builder setOverrideOnly(boolean value)
-
build
public StoredCommentLinkInfo build()
-
autoBuild
protected abstract StoredCommentLinkInfo autoBuild()
-
getName
protected abstract String getName()
-
getMatch
protected abstract String getMatch()
-
getLink
protected abstract String getLink()
-
getPrefix
protected abstract String getPrefix()
-
getSuffix
protected abstract String getSuffix()
-
getText
protected abstract String getText()
-
getOverrideOnly
protected abstract boolean getOverrideOnly()
-
-