Package com.flagright.api.types
Class UserTag.Builder
- java.lang.Object
-
- com.flagright.api.types.UserTag.Builder
-
- All Implemented Interfaces:
UserTag._FinalStage,UserTag.KeyStage,UserTag.ValueStage
- Enclosing class:
- UserTag
public static final class UserTag.Builder extends java.lang.Object implements UserTag.KeyStage, UserTag.ValueStage, UserTag._FinalStage
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UserTagbuild()UserTag.Builderfrom(UserTag other)UserTag._FinalStageisEditable(java.lang.Boolean isEditable)Flag to indicate if the tag is editable over the consoleUserTag._FinalStageisEditable(java.util.Optional<java.lang.Boolean> isEditable)UserTag.ValueStagekey(java.lang.String key)Key value when you are creating a custom variableUserTag._FinalStagevalue(java.lang.String value)Value for a given key when you are creating a custom variable
-
-
-
Method Detail
-
from
public UserTag.Builder from(UserTag other)
- Specified by:
fromin interfaceUserTag.KeyStage
-
key
public UserTag.ValueStage key(@NotNull java.lang.String key)
Key value when you are creating a custom variable
- Specified by:
keyin interfaceUserTag.KeyStage- Returns:
- Reference to
thisso that method calls can be chained together.
-
value
public UserTag._FinalStage value(@NotNull java.lang.String value)
Value for a given key when you are creating a custom variable
- Specified by:
valuein interfaceUserTag.ValueStage- Returns:
- Reference to
thisso that method calls can be chained together.
-
isEditable
public UserTag._FinalStage isEditable(java.lang.Boolean isEditable)
Flag to indicate if the tag is editable over the console
- Specified by:
isEditablein interfaceUserTag._FinalStage- Returns:
- Reference to
thisso that method calls can be chained together.
-
isEditable
public UserTag._FinalStage isEditable(java.util.Optional<java.lang.Boolean> isEditable)
- Specified by:
isEditablein interfaceUserTag._FinalStage
-
build
public UserTag build()
- Specified by:
buildin interfaceUserTag._FinalStage
-
-