Package net.luckperms.api.node.types
Interface InheritanceNode.Builder
-
- All Superinterfaces:
NodeBuilder<InheritanceNode,InheritanceNode.Builder>
- Enclosing interface:
- InheritanceNode
public static interface InheritanceNode.Builder extends NodeBuilder<InheritanceNode,InheritanceNode.Builder>
AInheritanceNodebuilder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull InheritanceNode.Buildergroup(@NonNull String group)Sets the name of the group to inherit.@NonNull InheritanceNode.Buildergroup(@NonNull Group group)Sets the group to inherit.-
Methods inherited from interface net.luckperms.api.node.NodeBuilder
build, clearExpiry, context, expiry, expiry, expiry, expiry, negated, value, withContext, withContext, withMetadata
-
-
-
-
Method Detail
-
group
@NonNull InheritanceNode.Builder group(@NonNull String group)
Sets the name of the group to inherit.Note that only one of this method and
group(Group)need be called.- Parameters:
group- the group name- Returns:
- the builder
-
group
@NonNull InheritanceNode.Builder group(@NonNull Group group)
Sets the group to inherit.Note that only one of this method and
group(String)need be called.- Parameters:
group- the group- Returns:
- the builder
-
-