Interface Ban
-
- All Known Subinterfaces:
Ban.IP,Ban.Profile
public interface BanRepresents a ban made on an object.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceBan.BuilderRepresents a builder that creates bans.static interfaceBan.IPRepresents a ban made on an IP.static interfaceBan.ProfileRepresents a ban made on aGameProfile.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Optional<Component>banSource()Gets the source that created this ban, if available.static Ban.Builderbuilder()Creates a new Builder.InstantcreationDate()Gets the creation date of the ban.Optional<Instant>expirationDate()Gets the expiration date of this ban, if available.default booleanisIndefinite()Gets whether this ban is indefinitely long, e.g.static Banof(GameProfile profile)Creates an indefinite ban on a profile.static Banof(GameProfile profile, Component reason)Creates an indefinite ban with a reason on a profile.Optional<Component>reason()Gets the reason for the ban, if available.BanTypetype()Gets the type of this ban.
-
-
-
Method Detail
-
builder
static Ban.Builder builder()
Creates a new Builder.- Returns:
- A new ban builder
-
of
static Ban of(GameProfile profile)
Creates an indefinite ban on a profile.- Parameters:
profile- The profile- Returns:
- The created ban
-
of
static Ban of(GameProfile profile, Component reason)
Creates an indefinite ban with a reason on a profile.- Parameters:
profile- The profilereason- The reason- Returns:
- The created ban
-
type
BanType type()
Gets the type of this ban.- Returns:
- The ban type
-
reason
Optional<Component> reason()
Gets the reason for the ban, if available.- Returns:
- The reason specified for the ban, if available
-
creationDate
Instant creationDate()
Gets the creation date of the ban.Note that this
Instanthas no effect on whether or not a ban is active. Any ban returned byBanService.find(GameProfile)will be used (when checking if a player can join, for example), regardless of its creation date.- Returns:
- Creation date of the ban
-
banSource
Optional<Component> banSource()
Gets the source that created this ban, if available.- Returns:
- the source of this ban, if available
-
expirationDate
Optional<Instant> expirationDate()
Gets the expiration date of this ban, if available.- Returns:
- Expiration time of the ban or
Optional.empty()
-
isIndefinite
default boolean isIndefinite()
Gets whether this ban is indefinitely long, e.g. has no expiration date.- Returns:
- True if this ban has no expiration date, otherwise false
-
-